Builtin string type doesn't support `join`, `upper` and `lower` functions/attributes. ```python # fails with missing attribute ",".join(list) "hello world".upper() "HELLo".lower() ``` - [x] `str.join` - [x] `str.upper` - [x] `str.lower`