lang/python/ StringMethods


The docs

a = "hello"
# todo

Idioms

Reversing a string (from here)

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