0
Why I have an error?
letters = ['a','b','c'] for | in letters: print(|)
2 Réponses
+ 2
change | to l
letters = ['a','b','c']
for l in letters:
print(l)
0
the for runs over a variable and there is constraints to declare variables. you tried using a pipeline. it does not work



