Files
pythonkurs/teil4/string_iter.py
Raspithek 3d8cb9128d Teil 6 "Objekte ist neu
Repository aufgeräumt.
2023-02-24 06:41:05 +01:00

6 lines
57 B
Python

s = 'Homer'
for pos in range(0,len(s)):
print(s[pos])