Python Forum
Find Average of User Input Defined number of Scores
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Find Average of User Input Defined number of Scores
#2
scores = []
while True:
    try:
        score = int(input('Enter a score or -1 to quit: '))
    except ValueError:
        print(f"Please enter a number")
        continue
    if score == -1:
        break
    scores.append(score)
print(f"Mean of scores is {sum(scores)/len(scores)}")
Reply


Messages In This Thread
RE: Find Average of User Input Defined number of Scores - by Larz60+ - Oct-25-2019, 12:40 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  find the sum of a series of values that equal a number ancorte 1 526 Oct-30-2023, 05:41 AM
Last Post: Gribouillis
  WHILE LOOP NOT RETURNING USER INPUT AFTER ZerroDivisionError! HELP! ayodele_martins1 7 1,107 Oct-01-2023, 07:36 PM
Last Post: ayodele_martins1
Question in this code, I input Key_word, it can not find although all data was exact Help me! duchien04x4 3 1,091 Aug-31-2023, 05:36 PM
Last Post: deanhystad
  restrict user input to numerical values MCL169 2 950 Apr-08-2023, 05:40 PM
Last Post: MCL169
  find random numbers that are = to the first 2 number of a list. Frankduc 23 3,295 Apr-05-2023, 07:36 PM
Last Post: Frankduc
  user input values into list of lists tauros73 3 1,100 Dec-29-2022, 05:54 PM
Last Post: deanhystad
Information How to take url in telegram bot user input and put it as an argument in a function? askfriends 0 1,135 Dec-25-2022, 03:00 PM
Last Post: askfriends
Question Take user input and split files using 7z in python askfriends 2 1,136 Dec-11-2022, 07:39 PM
Last Post: snippsat
Sad how to validate user input from database johnconar 3 1,970 Sep-11-2022, 12:36 PM
Last Post: ndc85430
  How to split the input taken from user into a single character? mHosseinDS86 3 1,216 Aug-17-2022, 12:43 PM
Last Post: Pedroski55

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020