Make a program that asks the user for a series of numbers until they either want to output the average or quit the program.

To complete this task, the programme needs to keep asking the user to input numbers, until they average or quit # this line initally takes in the input of the user number = input("Enter a number (input 'a' to average and 'q' to quit):") # the user inputted numbers need to be stored together in an array # an empty array is initialised for this purpose nums = [] # if the number is not 'a' (meaning take an average) and not 'q' for quit, the while loop is entered # this while loop continues asking for input and storing it until the user either asks for the average or quits while (number != 'a') and (number != 'q'):  #  the user input is stored in the array  nums.append(float(number))  #  ask for another input  number = input("Enter a number (input 'a' to average and 'q' to quit):") # if the user inputs a or q, the programme comes out of the while loop and is here # if the user inputs a the average is computed if number == 'a':  #  an edge case if no numbers have been inputted so far  if nums == []:    print('You have not inputted any numbers yet, please start the programme again')  #  if numbers have been inputted - calculate mean  else:    #  calculate the mean, do total/length of the array    total = sum(nums)    length = len(nums)    average = total/length    print ("average: ", round(average,2)) # else, if q was entered, quit elif number == 'q':  print ('You have quit the programme') 

SM
Answered by Shabri M. Python tutor

11533 Views

See similar Python Mentoring tutors

Related Python Mentoring answers

All answers ▸

Sales is real Customers is integer startmainprog input Sales input Customers if ((Sales > 500) OR ((Sales > 300) AND (Customers>9))) then output “Bonus Awarded” else output “No Bonus” end if end subroutine. Sales = 600 Customers = 9, answer:


Whats the output of "for i in "hello world": print(i)" and why/how is this achieved


What is the difference between using range() and a list of values?


Manually implement a function that finds the smallest value in a list of integers and print it.


We're here to help

contact us iconContact ustelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

MyTutor is part of the IXL family of brands:

© 2025 by IXL Learning