c = 'a'isUpper = c.isupper()isLower = c.islower()# isUpper is False# isLower is Trueprint(f"{isUpper = }")print(f"{isLower = }")