How to remove leading whitespaces from a string in the Python?

Hi, How to remove leading whitespaces from a string in the Python

https://docs.python.org/3/library/stdtypes.html#str.lstrip:

>>> '   spacious   '.lstrip()
'spacious   '

Using a .lstrip() function