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
#1
Hi! How do I code an while iteration and input its values ​​in a list? Example:
count=0
while (count<5):
      print(count)
      count+1
x=[], but for count+1
x=[0,1,2,3,4]
I would be very grateful if someone could help me.
Reply
#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
#3
How do I code a list with which I input the variable several times? Example:

1 a=float(input("Insert a:")
2 x=[a,a,a]
Reply
#4
Please, don't start new threads unnecessarily. If the answer you get does not satisfy, elaborate further and explain better what your goal is. Also you have been advised to use BBcode tags
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#5
How do I code a list with which I input the value of the variable umpteen times? Example:

a=float(input("Insert a:")
x=[a,a,a]
Reply
#6
(Oct-06-2019, 05:21 PM)buran Wrote: Please, don't start new threads unnecessarily. If the answer you get does not satisfy, elaborate further and explain better what your goal is. Also you have been advised to use BBcode tags
Sorry for my failure. My english is not very good and I am learning to use this forum.
Reply
#7
user_input = []
for n in range(3):
    a = float(input('Insert a:'))
    user_input.append(a)
print(user_input)
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  difference between forms of input a list to function akbarza 6 928 Feb-21-2024, 08:02 PM
Last Post: bterwijn
  user input values into list of lists tauros73 3 1,025 Dec-29-2022, 05:54 PM
Last Post: deanhystad
  User input/picking from a list AnunnakiKungFu 2 2,283 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,240 Jan-28-2021, 03:36 AM
Last Post: bowlofred
  Undo interation to make a single list? DustinKlent 2 2,133 Nov-29-2020, 03:41 AM
Last Post: DustinKlent
  user input for multi-dimentional list without a prior iteration using input() Parshaw 6 2,687 Sep-22-2020, 04:46 PM
Last Post: Parshaw
  taking input doesnt print as list bntayfur 2 2,055 Jun-04-2020, 02:48 AM
Last Post: bntayfur
  Help with calling list from user input farispython 5 2,753 Nov-03-2019, 03:13 PM
Last Post: Gribouillis
  with input remove a string from the list konsular 3 2,519 Oct-12-2019, 09:25 AM
Last Post: konsular
  Creating csv header from user-input list dvanommen 2 2,094 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