Python random numbers multiple times
问题 import random def main(): uinput() def uinput(): times = int(input('How many numbers do you want generated?')) number1 = int(input('Put in the first number:' )) number2 = int(input('Put in the second number:')) rnumber = random.randint(number1, number2) print (rnumber) main() I am messing around in Python, and I want my program to generate random numbers. As you can see I have already accomplished this. The next thing I want to do is have it generate multiple random numbers, depending on how