what does the word iterate means in python? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

what does the word iterate means in python?

I need complete idea of list iteration with argument. How is it used in mapping?

8th Jun 2017, 4:54 AM
Samir Imtiaz
Samir Imtiaz - avatar
1 Answer
+ 2
iterate is to go through the list. ie. a string is a list of characters.. for s in "hello": print s iterates through all the characters in the string and prints out h e l l o
8th Jun 2017, 11:03 AM
Daemo
Daemo - avatar