Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 118 Bytes

File metadata and controls

10 lines (7 loc) · 118 Bytes

String

Iterate a string

s = "test string"

for i, c in enumerate(s):
    print(i, c)