简单类型 / 字符类型

c = 'a'
isUpper = c.isupper()
isLower = c.islower()
# isUpper is False
# isLower is True

print(f"{isUpper = }")
print(f"{isLower = }")