🤖
Artificial Intelligence for Idiot
  • Introduction
  • What is Machine Learning
  • Python Basics
    • Random Number
  • Data Manipulation
    • Numpy
    • Pandas
  • Data Visualization
    • Matplotlib
      • Simple drawing
      • Simple line and point
      • Any line and label
      • Annotation in reality
  • Dataset Searching
  • Keras
    • Data preparation
    • Build the simplest model
  • Robot
    • Speech to Text
Powered by GitBook
On this page

Was this helpful?

  1. Python Basics

Random Number

>>> import random
>>> random.randint(1, 2)
2
>>> random.randint(1, 2)
1
PreviousPython BasicsNextData Manipulation

Last updated 6 years ago

Was this helpful?