Python String isupper() method returns whether all characters in a string are uppercase or not.
Python String isupper() method Syntax
Syntax: string.isupper()
Returns: True if all the letters in the string are in the upper case and False if even one of them is in the lower case.
Python String isupper() method Examples
Python3
print(("GEEKS").isupper()) |
Output:
True
Example 1: Demonstrating the working of isupper()
Python3
# Python3 code to demonstrate# working of isupper()# initializing stringisupp_str = "GEEKSFORGEEKS"not_isupp = "GeeksforLazyroar"# Checking which string is# completely uppercaseprint ("Is GEEKSFORGEEKS full uppercase ? : " + str(isupp_str.isupper()))print ("Is GeeksforLazyroar full uppercase ? : " + str(not_isupp.isupper())) |
Output:
Is GEEKSFORGEEKS full uppercase ? : True Is GeeksforLazyroar full uppercase ? : False
Example 2: Practical Application
Python String isupper() function can be used in many ways and has many practical applications. One such application for checking the upper cases, checking Abbreviations (usually upper case), checking for correctness of sentence which requires all upper cases. Demonstrated below is a small example showing the application of isupper() method.
Python3
# Python3 code to demonstrate# application of isupper()# checking for abbreviations.# short form of work/phrasetest_str = "Cyware is US based MNC and works in IOT technology"# splitting stringlist_str = test_str.split()count = 0# counting upper casesfor i in list_str: if (i.isupper()): count = count + 1# printing abbreviations countprint ("Number of abbreviations in this sentence is : " + str(count)) |
Output:
Number of abbreviations in this sentence is : 3
