MicroPico/random_number.py

3 lines
64 B
Python

from random import randint as rand
num = rand(1, 100)
print(num)