5 Answers
+ 4
Remove all ">>>" from the code, and put the missing quote at line ... for number c:". Then the code will run as expected.
+ 1
Thank you
0
Sorry about that
>>>a=eval(input("please enter a number for a:"))
>>>b=eval(input ("please enter a number for b:"))
>>>c=eval(input ("please enter a number for c:))
total= a+b+c
print ("the total of the numbers is",(total))
average= total /3
print ("the average of the numbers is",(average ,3))