进阶教程 用Python实现字符串元素大写化 2024-02-16 程序员贵哥 0 我展示了两种将字符串转换为大写的方法。第一种循环写法def pythonit(): a = " hello pythonit" b = " " for i in a: b += i.upper() print(b) pythonit()在这个...