+ 1
In the list, How could I show the number of the value from the list, one by one? (Indexing issue)
List issues in python, Index issue in python https://code.sololearn.com/cCc7d5Q183RO/?ref=app
2 Respuestas
+ 1
Thank you for your answer 👩💻
But what I did was : I wrote the code
Student[1]
So It should appear on the run mood the name of "Ahmed" but it didn't
I shouldn't write print
0
Rana Yehia
This should do it:
for things in students:
print(things)
Happy Coding 😀😀