+ 10
How do you create a function to get random numbers
how do you create a function to get random numbers ( or any random objects)
3 Answers
+ 4
import random
a = random.randint(1,6)
this produces a random int between 1 and 6.
+ 7
thanks
how do you create a function to get random numbers ( or any random objects)