简单类型 / 字符串

# Empty strings
someEmptyString = ""
anotherEmptyString = str("")

if not anotherEmptyString:
    print("string is empty")