python_ref_string_isupper_2.py:
x
 
a = "Hello World!"
b = "hello 123"
c = "MY NAME IS BILL"
print(a.isupper())
print(b.isupper())
print(c.isupper())