Python Forum
Input while interation in a list
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Input while interation in a list
#2
When you know how many times you want to go through the loop, better to use a for statement. While is more for loops where you are less sure of the number of iterations and want to check for a condition.
x = []
for count in range(5):
    print(count)
    x.append(count)
print (x)
Output:
0 1 2 3 4 [0, 1, 2, 3, 4]
To use while, instead, your code is closer
x = []
count = 0
while count<5 :
    print (count)
    x.append(count)
    count+=1
print (x)
Gives same output, but you can see the code is slightly longer because you are manually handling "count"
Reply


Messages In This Thread
Input while interation in a list - by doug2019 - Oct-06-2019, 08:02 AM
RE: Input while interation in a list - by jefsummers - Oct-06-2019, 11:50 AM
RE: Input while interation in a list - by buran - Oct-06-2019, 05:21 PM
RE: Input while interation in a list - by doug2019 - Oct-06-2019, 06:34 PM
RE: Input while interation in a list - by buran - Oct-06-2019, 06:44 PM
List and variable - by doug2019 - Oct-06-2019, 06:28 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  difference between forms of input a list to function akbarza 6 1,015 Feb-21-2024, 08:02 PM
Last Post: bterwijn
  user input values into list of lists tauros73 3 1,064 Dec-29-2022, 05:54 PM
Last Post: deanhystad
  User input/picking from a list AnunnakiKungFu 2 2,324 Feb-27-2021, 12:10 AM
Last Post: BashBedlam
  Group List Elements according to the Input with the order of binary combination quest_ 19 6,419 Jan-28-2021, 03:36 AM
Last Post: bowlofred
  Undo interation to make a single list? DustinKlent 2 2,164 Nov-29-2020, 03:41 AM
Last Post: DustinKlent
  user input for multi-dimentional list without a prior iteration using input() Parshaw 6 2,751 Sep-22-2020, 04:46 PM
Last Post: Parshaw
  taking input doesnt print as list bntayfur 2 2,100 Jun-04-2020, 02:48 AM
Last Post: bntayfur
  Help with calling list from user input farispython 5 2,789 Nov-03-2019, 03:13 PM
Last Post: Gribouillis
  with input remove a string from the list konsular 3 2,571 Oct-12-2019, 09:25 AM
Last Post: konsular
  Creating csv header from user-input list dvanommen 2 2,135 Aug-26-2019, 08:51 PM
Last Post: dvanommen

Forum Jump:

User Panel Messages

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