📜  Python 将字符串转换为小写 - Python 代码示例

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

代码示例1
# Program to convert uppercase characters to lowercase
text= "ItsMYCode Coding Simplified"
text2="HELLO WORLD"
print('Original String: ',text)
print('Original String: ',text2)

print('Lowercase String: ',text.lower())
print("Lowercase String: ", text2.lower())