0
if 10 > 5: print("10 greater than 5") else: print("Program ended")
It show error .plz tell the reason and how to correct it
1 Antwort
+ 2
There's an extra space before the else statement which causes the error. Always remember that proper indentation is important in python.👍