Answers for "unindent does not match any outer indentation level (<unknown>, line 26)pylint(syntax-error)"

0

unindent does not match any outer indentation level (<unknown>, line 26)pylint(syntax-error)

"""You have to check the space before each instruction after a condition
The space shall not be composed of little spaces (---) but with long identation
Ex:
"""
#Good position
if x==1:
  print("Ok")

#Wrong position
if X==2:
 print("Erreur")
Posted by: Guest on January-24-2021

Code answers related to "unindent does not match any outer indentation level (<unknown>, line 26)pylint(syntax-error)"

Python Answers by Framework

Browse Popular Code Answers by Language