fork download
  1. file = open("yomikomi.txt","r") #テキストを読み込む
  2.  
  3. for number in file:
  4. def buriburi(number): #関数定義開始
  5. if number.isdigit(): #数字以外の場合文字を出力して上に戻る
  6. print("数字以外受けつけませーーーん( ˘ω˘ )")
  7. continue
  8. elif number % 3 == 0 and number % 5 == 0:
  9. print("3と5の倍数だよ(`・ω・´)")
  10. elif number % 3 == 0:
  11. print("3の倍数だよ(`・ω・´)")
  12. elif number % 5 == 0:
  13. print("5の倍数だよ(`・ω・´)")
  14. else:
  15. print("どれでもないよ(´Д`)")
  16. buriburi(number)
  17. file.close()
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Traceback (most recent call last):
  File "/usr/lib/python3.5/py_compile.py", line 125, in compile
    _optimize=optimize)
  File "<frozen importlib._bootstrap_external>", line 735, in source_to_code
  File "<frozen importlib._bootstrap>", line 222, in _call_with_frames_removed
  File "./prog.py", line 7
    continue
           ^
TabError: inconsistent use of tabs and spaces in indentation

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python3.5/py_compile.py", line 129, in compile
    raise py_exc
py_compile.PyCompileError: Sorry: TabError: inconsistent use of tabs and spaces in indentation (prog.py, line 7)
stdout
Standard output is empty