Простые типы / Строки

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

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