1. ホーム
  2. python

[解決済み] Pythonでファイルから一度に一文字ずつ読み込むには?

2023-05-21 10:11:54

質問

どうすればいいのか、どなたか教えてください。

どのように解決するのですか?

with open(filename) as f:
  while True:
    c = f.read(1)
    if not c:
      print "End of file"
      break
    print "Read a character:", c