fork download
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3.  
  4. # 遊園地
  5.  
  6. import re
  7. # ファイルを開く
  8. fh = open("sizuno.txt", "r", encoding="UTF-8")
  9. # 1行ずつ読み込む
  10. for line in fh:
  11. print(re.findall(r'(\d+|\D+)', line))
  12. # ファイルを閉じる
  13. fh.close()
Runtime error #stdin #stdout #stderr 0.01s 28384KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 8, in <module>
FileNotFoundError: [Errno 2] No such file or directory: 'sizuno.txt'