Methods to remove whitespaces from a Python string
Question
:
Which of the following methods remove whitespaces from a string?
.lstrip()
.mstrip()
.rstrip()
.strip()
Answer
:
A, C, D - are the correct answers