word = "café 🌍"
print(word, len(word), len("a\u0301"))
print("α" < "β", "" == "", "a" + "b")
print(True, False, None, sep=" / ", end="!\n")
print(f"value={12345678901234567890}, flag={True}, text={word}")
