Program - Test if string contains upper case
Topic: Program - Test if string contains upper case
Solution
word = "Hello World" check = word.isupper() print(f"String contains upper case?:{check}")
List all Python Programs
Solution
word = "Hello World" check = word.isupper() print(f"String contains upper case?:{check}")