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"