import random #age = int(input("Enter your age ")) #if age < 0: # print("Greetings time traveller") #elif age > 122: # print("You are withou question the oldest person EVER.") #while age < 0 or age > 1000: # age = int(input("Try again.")) #print("That is an age that theoreticaly is fine") testNum = random.randint(1,10) print(testNum) Step 1 Write a program that picks random numbers until 3 is picked During the while loop, print the random numbers SOLUTION import random num = random.randint(1,10) print(num) while num != 3: num = random.randint(1,10) print(num) Step 2 Tally all the numbers you generate Step 3 Tally the numbers of times the loop ran Step 4 Compute the average of the random numbers