DEBSOURCES
Skip Quicknav
sources / pycode-browser / 1%3A1.02%2Bgit20181006-3 / Code / Maths / forloop.py
123456789
#Example: forloop.py a = 'my name' for ch in a: print ch b = ['hello', 3.4, 2345, 3+5j] for item in b: print item