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
#1

i need to create an empty list and by asking the user to input one number every time to update the list.
up to now i have:
while True:
    if input("\n\n\nPlease enter a number to add it to the queue or press q to end the game: ") == 'q':
        break
MyList = []
num = int(input("Please type a number: "))
-the number will be added to the beginning of the queue if it has a 0, eg 01,02..But it will be added without the 0. otherwise at the end of the queue
-the user can remove an entry at the end of the queue by typing r. If the user types 0r then it will be removed from the beginning of the queue.


Some help please?
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,005 Sep-10-2022, 07:11 AM
Last Post: 2ECC3O
  list digit into number Voldyy 2 1,519 Jul-10-2022, 06:13 PM
Last Post: deanhystad
  Displaying list correspond to the column number danlopek14q 9 3,933 Aug-27-2021, 04:32 AM
Last Post: naughtyCat
  How to convert every even number in a list to odd? Bruizeh 4 3,725 Aug-27-2021, 03:04 AM
Last Post: naughtyCat
  Get the biggest number from a two dimensional list rs74 13 4,021 Aug-09-2020, 04:02 PM
Last Post: deanhystad
  Python Adding +1 to a list item cointained in a dict ElReyZero 1 2,050 Apr-30-2020, 05:12 AM
Last Post: deanhystad
  How can I print the number of unique elements in a list? AnOddGirl 5 3,245 Mar-24-2020, 05:47 AM
Last Post: AnOddGirl
  adding parts of a list Eric7Giants 4 2,725 Nov-17-2019, 05:53 PM
Last Post: buran
  Adding values to list and pickling mefiak 2 2,808 May-31-2018, 08:57 AM
Last Post: mefiak
  Multiplying number in a list in an order pythoneer 12 6,555 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