如何在 Python 中将变量的值更改为小写?
How do I change the value of a variable to lowercase in Python?
如何在 Python 中将变量的值更改为小写?
例如,当“我在 KAIST 天赋教育中心学习 Python 编程。”是这个变量的值,我如何让它成为“我在 kaist 天才教育中心学习 python 编程”?
我会尝试使用 .replace()
和 .lower()
stringEx = stringEx.lower()
输出
i study python programming at kaist center for gift education.
只需使用lower
函数
string.lower()
这里是 official documents。
如何在 Python 中将变量的值更改为小写?
例如,当“我在 KAIST 天赋教育中心学习 Python 编程。”是这个变量的值,我如何让它成为“我在 kaist 天才教育中心学习 python 编程”?
我会尝试使用 .replace()
和 .lower()
stringEx = stringEx.lower()
输出
i study python programming at kaist center for gift education.
只需使用lower
函数
string.lower()
这里是 official documents。