Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 .txt 文件,其中包含要导入脚本的随机单词。然后我想取所有单词,在每一行打印一个并将它们全部转换为大写。我已经完成了第一部分:
a=open("redchief.txt").read().split() print ' \n'.join(a)
我在将数据转换为大写字母时遇到问题。以下是一些数据:
It looked like a good thing: but wait till I tell you.
只需将您的最后一行更改为:
print ' \n'.join(a)
至:
print ' \n'.join(a).upper()
您不必先将结果存储在单独的变量中,因为它为您提供了一个可以调用' \n'.join(a)其方法的字符串对象。upper()
' \n'.join(a)
upper()