+ 1
Can someone please explain this short snippet of python?
Okay so this code was in part of a āFill in the blankā lesson in python. And Iām confused to as if this would even work? https://code.sololearn.com/cLDCeIiga6dm/?ref=app letters = ['a', 'b', 'c'] for I in letters: print(I)
2 Answers
+ 3
if you put a tab char just before 'print', the code will run and you will understand š
+ 1
ah that would make sense, thank you!