which of the following removes all leading white spaces from string in Python code example
Example: remove trailing and leading spaces in python
text = " Hello World "
text.strip()
# Hello World
text = " Hello World "
text.strip()
# Hello World