Dup Goto 📝

StringMethods

PT2/aw/lang/python 07-31 13:46:41
To Pop
11 lines, 23 words, 256 chars Monday 2023-07-31 13:46:41

The docs

a = "hello"
# todo

Idioms

Reversing a string (from here)

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