Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
while loops
#4
(Nov-24-2022, 10:08 PM)CJM125 Wrote: I'm completely new to Python and coding in general. I've been asked to write a program that always asks the user to enter a number. When the user enters the negative number -1, the program should stop requesting the user to enter a number. The program must then calculate the average of the numbers entered excluding the -1. Any help would be appreciated.

One approach would be to write some pseudocode:

# get the user input
# is the input -1
# no:
    # store the input and loop back to get another input
# yes:
   # stop asking for input and process the list of inputs
So, you need to know how to get some user input and check the requirement; that's your first step.

Have you been asked to do this, with no tuition, or have you been given some tuition?

Have a look at this site for, not only the fundamentals, but also more advanced topics.
Sig:
>>> import this

The UNIX philosophy: "Do one thing, and do it well."

"The danger of computers becoming like humans is not as great as the danger of humans becoming like computers." :~ Konrad Zuse

"Everything should be made as simple as possible, but not simpler." :~ Albert Einstein
Reply


Messages In This Thread
while loops - by CJM125 - Nov-24-2022, 10:08 PM
RE: while loops - by Larz60+ - Nov-24-2022, 10:21 PM
RE: while loops - by BliepMonster - Nov-25-2022, 08:38 AM
RE: while loops - by rob101 - Nov-25-2022, 09:09 AM
RE: while loops - by jefsummers - Nov-26-2022, 01:47 AM

Forum Jump:

User Panel Messages

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