Computer Science

Name the function/method required to

(i) check if a string contains only uppercase letters.

(ii) gives the total length of the list.

Python String Manipulation

3 Likes

Answer

(i) isupper() method is used to check if a string contains only uppercase letters.

(ii) len() gives the total length of the list.

Answered By

2 Likes


Related Questions