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.
我有一个文本文件需要使用 python 在文件中搜索它可能是大写或小写字母
如果您希望我们花时间回答这个问题,也许您应该花更多的时间来写这个问题。不过,据我了解,您正在寻找这样的东西:
import sys with open(sys.argv[0], "r") as f: for row in f: for chr in row: if chr.isupper(): print chr, "uppercase" else: print chr, "lowercase"