0
Lists
how do take an input list from a user but in the following way List: 1 2 3 4 5 I mean this way and not the regular way List: 1 2 3 4 Programing language python
5 Respuestas
+ 7
mylist =[input() for _ in range(5)]
+ 6
Avishai Feuer
please add one tag to let them now, it is python 😉
+ 1
without the number of elements inside the range thats my problam i want to do what i posted without knowing before the number if elements
0
What language?
0
Please link your attempt.