The [docs](https://docs.python.org/3/library/stdtypes.html#str) ```python a = "hello" # todo ``` ## Idioms Reversing a string (from [here](https://www.w3schools.com/python/python_howto_reverse_string.asp)) ```python txt = "Hello World"[::-1] print(txt) ```