Methods to remove whitespaces from a Python string

Question:
Which of the following methods remove whitespaces from a string?

  1. .lstrip()
  2. .mstrip()
  3. .rstrip()
  4. .strip()
Answer:
A, C, D - are the correct answers