Computer Science

Which method removes all the trailing whitespaces from the right of the string?

  1. tolower()
  2. upper()
  3. Istrip()
  4. rstrip()

Python String Manipulation

1 Like

Answer

rstrip()

Reason — The rstrip() function removes all the trailing whitespaces from the right of the string.

Answered By

2 Likes


Related Questions