📅  最后修改于: 2023-12-03 15:25:22.928000             🧑  作者: Mango
在Python中,字符串是一种常见的数据类型,并且拥有各种有用的方法。其中之一是将字符串转换为小写形式。
使用lower()
方法可以将字符串中的所有字符转换为小写形式。它返回一个新的字符串,原始字符串不会被修改。
message = "Hello, World!"
lowercase_message = message.lower()
print(lowercase_message)
输出:
hello, world!
在编写Python程序时,我们经常需要校验用户的输入。为了保证输入一致性,我们可能需要将输入的字符串转换为小写形式再进行校验。这样,即使用户输入的是大写字符,也可以正确地进行校验。
# 要求用户输入 "yes" 或 "no"
answer = input("Do you like Python? (yes or no): ")
if answer.lower() == "yes":
print("Great!")
elif answer.lower() == "no":
print("Too bad.")
else:
print("Invalid input.")
输出:
Do you like Python? (yes or no): YES
Great!