Python Forum
adding a number to the list
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
adding a number to the list
#2
Well, you have your number input outside of the loop, and declare your list after it's done executing. For what you described, the basic structure of your program might look like this:
MyList = []
while True:
    userInput = input("string that asks for a number or gives directions")
    if userInput == 'q':
        break
   elif #other conditions
Basically, you will continue asking for input until the user types in 'q'. The elif statement could be the first of several, checking for each of the different conditions you described.
Reply


Messages In This Thread
adding a number to the list - by atux_null - Nov-04-2017, 07:51 PM
RE: adding a number to the list - by Lux - Nov-04-2017, 08:25 PM
RE: adding a number to the list - by Larz60+ - Nov-05-2017, 12:10 AM
RE: adding a number to the list - by atux_null - Nov-05-2017, 04:20 PM
RE: adding a number to the list - by gruntfutuk - Nov-06-2017, 07:01 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  help with adding duplicates elements together in a list 2ECC3O 5 2,015 Sep-10-2022, 07:11 AM
Last Post: 2ECC3O
  list digit into number Voldyy 2 1,523 Jul-10-2022, 06:13 PM
Last Post: deanhystad
  Displaying list correspond to the column number danlopek14q 9 3,937 Aug-27-2021, 04:32 AM
Last Post: naughtyCat
  How to convert every even number in a list to odd? Bruizeh 4 3,735 Aug-27-2021, 03:04 AM
Last Post: naughtyCat
  Get the biggest number from a two dimensional list rs74 13 4,031 Aug-09-2020, 04:02 PM
Last Post: deanhystad
  Python Adding +1 to a list item cointained in a dict ElReyZero 1 2,063 Apr-30-2020, 05:12 AM
Last Post: deanhystad
  How can I print the number of unique elements in a list? AnOddGirl 5 3,250 Mar-24-2020, 05:47 AM
Last Post: AnOddGirl
  adding parts of a list Eric7Giants 4 2,731 Nov-17-2019, 05:53 PM
Last Post: buran
  Adding values to list and pickling mefiak 2 2,814 May-31-2018, 08:57 AM
Last Post: mefiak
  Multiplying number in a list in an order pythoneer 12 6,563 Mar-23-2018, 08:21 PM
Last Post: buran

Forum Jump:

User Panel Messages

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