Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Remove spaces

line = "  ab cd  "

res = line.lstrip(" ")
print(f"'{res}'")        # 'ab cd  '

res = line.rstrip(" ")
print(f"'{res}'")        # '  ab cd'

res = line.strip(" ")
print(f"'{res}'")        # 'ab cd'

res = line.replace(" ", "")
print(f"'{res}'")        # 'abcd'