0
How do i print a random integer between a set of two other intergers?
I want my code to select a number between 1 and 9, what would i pit for that to happen?
1 Odpowiedź
+ 2
# Try This
import random
x = (random.randint(1, 9))
print(x)
I want my code to select a number between 1 and 9, what would i pit for that to happen?