If you enter 1 2 3 in three separate lines, when you run this program, what will be displayed? print ("Enter three numbers: ") number1 = eval (input ()) number2 = eval (input ()) number3 = eval (input ()) # Compute average average = (number1 + number2 + number3) / 3 # Display result print (average)
+2
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “If you enter 1 2 3 in three separate lines, when you run this program, what will be displayed? print ("Enter three numbers: ") number1 = ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » If you enter 1 2 3 in three separate lines, when you run this program, what will be displayed? print ("Enter three numbers: ") number1 = eval (input ()) number2 = eval (input ()) number3 = eval (input ()) # Compute average average =