0
what does the ( i) mean?
2 Answers
+ 5
if you mean something like
for i in ['a', 'b', 'c']:
print (i)
"i" is the loop variable
each iteration it takes one value of the list
it's only a convention, but you can use any variable name
for more info, check "for loops" section on Python tutorial
+ 1
Thanks LayB..âș