Nov-09-2020, 10:56 AM
(This post was last modified: Nov-09-2020, 11:03 AM by charlottelol.)
Hello,
I need help making a random number generator for addition. I have tried to use random.randint but it wont work even with the random import enabled. This generator will need to also see if the users answer is correct. Could somebody please help, I will post the unfinished code bellow.I am also using Thonny, if that changes anything, im not sure. Thanks
.
import random
print('Random number generator')
lowest_option=input ('What is the lowest option?')
highest_option=input('What is the highest option?')
for count in range (5):
print random.radint(highest_option,lowest_option)
I need help making a random number generator for addition. I have tried to use random.randint but it wont work even with the random import enabled. This generator will need to also see if the users answer is correct. Could somebody please help, I will post the unfinished code bellow.I am also using Thonny, if that changes anything, im not sure. Thanks

import random
print('Random number generator')
lowest_option=input ('What is the lowest option?')
highest_option=input('What is the highest option?')
for count in range (5):
print random.radint(highest_option,lowest_option)