Python-字母大小写转换JAY.LIN 收录于 Python 2024-12-06 约 86 字 预计阅读 1 分钟 目录 Python 字母大小写转换python把大写字母转小写字母使用lower 方法例如 str_a = "PYTHON" print(str_a.lower())python把小写字母转大写字母使用lower 方法 str_b ="python" print(str_b.upper())Please enable JavaScript to view the comments powered by Giscus.