Python 3.12.6 (tags/v3.12.6:a4a2d2b, Sep 6 2024, 20:11:23) [MSC v.1940 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
DreamPie 1.2.1
>>> for i in 'ahoj':
... print(i)
a
h
o
j
>>> for i in 'ahoj':
... print(i, end='|')
a|h|o|j|
>>> for i in range(len('ahoj')):
... print('ahoj'[i], end='|')
a|h|o|j|
>>>