Skip to Content

lower(): Converts a string to the lowercase letter. upper(): Converts a string to the uppercase letter. islower() / isupper(): Checks if the whole string is in lower case or upper case and returns bool value respectively. startswith(): Returns a bool value. Check if the given string starts with a particular text. endswith(): Returns a bool …

Read More about Python 3 String Operations