Dup Ver Goto 📝

StringMethods

PT2/lang/python/old-notes does not exist
To
11 lines, 23 words, 256 chars Page 'StringMethods' does not exist.

The docs

a = "hello"
# todo

Idioms

Reversing a string (from here)

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