Computer Science

Name the built-in String function:

(a) Used to remove the space(s) from the left of the string.

(b) Used to check if the string is uppercase or not.

(c) Used to check if the string contains only whitespace characters or not.

Python Functions

1 Like

Answer

(a) lstrip()

(b) isupper()

(c) isspace()

Answered By

1 Like


Related Questions