Code Fix

初級TabError: inconsistent use of tabs and spaces の原因と直し方 › パターン2

TabError: inconsistent use of tabs and spaces の原因と直し方

同じブロックの中でタブとスペースを混在させたときに出るエラーです。

 1  x = 5
 2  if x > 0:
 3      y = 1
 4  ____print(y)
      ^
File "main.py", line 4 print(y) TabError: inconsistent use of tabs and spaces in indentation

空欄を埋めて実行を通す

広告
広告スロット(未設定)

TabError: inconsistent use of tabs and spaces の原因と直し方

エディタ上では同じ見た目になるため、コードを読むだけでは原因に気づけません。

このエラーの解説と類題をまとめて見る →

広告
広告スロット(未設定)