if else problem | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

if else problem

# ı was trying run this code, but it is not starting. WHY ? :( grade = 70 if (grade >= 70 or grade <=100): print("Passed!") else: if(grade >= 0 or grade < 70 ): print("Fail") # I am new programmer

2nd Nov 2020, 4:24 PM
Merich0614
Merich0614 - avatar
1 Answer
+ 1
ERROR IS SHOWN BELOW: File "<string>", line 4 else: ^ IndentationError: unindent does not match any outer indentation level SO... This is an indentation error the if and else should be indented with equal spaces (indentation is the distance between the left margin and the code). THIS CODE WILL WORK: grade = 70 if (grade >= 70 or grade <=100): print("Passed!") else: if (grade >= 0 or grade < 70 ): print("Fail") # I am new programmer THE SIXTH LINE ALSO,SHOULD BE INDENTED ! LIKE AFTER IF STARTED WE NEED TO GIVE A LITTLE MORE DISTANCE FOR THE CODE INSIDE THE IF.
26th Nov 2022, 11:06 AM
Shamil Darwish
Shamil Darwish - avatar