differentmatt / filbert

JavaScript parser of Python
Other
133 stars 27 forks source link

Looping over characters in string gives indexes, not values #69

Open nemoyatpeace opened 9 years ago

nemoyatpeace commented 9 years ago

a = 'ashdifaweflaskdjfpaoisd' for c in a: print(c)

This loop doesn't work properly, seems to actually work like: for c in range(len(a)):

It iterates over integers instead of the letters.

nwinter commented 8 years ago

Right now says Dont do this yet.