Posts for isupper()

Deven
Deven wrote

Python upper(), lower(), isupper(), and islower() Methods example

Sometimes we may need to Convert String characters to uppercase and lowercase, for this purpose Python provides us two methods: The upper() string method converts all of the characters to uppercase The lower() string method converts all of the characters to lowercase upper() string method example code output lower() string method example code output isupper(), […]

July 25, 2020 in Python & Snippets