在Python中如何将字符串转换为小写
时间:2019-04-29 03:17:18 来源:igfitidea点击:
有时我们可能需要将任何字符串转换为小写(所有字母)。
本教程将帮助将字符串(任何大小写)转换为小写,如下图所示。
将字符串转换为小写
在Python编程语言中,可以使用' .lower() '函数将任何字符串转换为小写。
下面是将字符串转换为小写字母的示例Python代码。
>>> s = "HeLLo Python" >>> print(s.lower()) hello python