Dup Goto 📝

StringMethods

PT2/lang/python/old-notes 10-17 14:11:30
To Pop
11 lines, 23 words, 256 chars Tuesday 2023-10-17 14:11:30

The docs

a = "hello"
# todo

Idioms

Reversing a string (from here)

txt = "Hello World"[::-1]
print(txt)