📜  python代码示例中的casefold

📅  最后修改于: 2022-03-11 14:46:32.001000             🧑  作者: Mango

代码示例3
string = "PYTHON IS AWESOME"
# casefold is used to lowercase the string
# print lowercase string
print("Lowercase string:", string.casefold())