ShriRam Changed status to publish August 18, 2023
str1 = input(“enter alphabet:”)
print(“Checking if the string ‘”,str1,”‘ is uppercased or not”)
print(str1.isupper())
str2= input(“enter alphabet:”)
print(“Checking if the string ‘”,str2,”‘ is uppercased or not”)
print(str1.islower())
ShriRam Changed status to publish August 18, 2023