Answers for "File "demo_indentation2_error.py", line 3 print("Five is greater than two!") ^ IndentationError: unexpected indent"

0

File "demo_indentation2_error.py", line 3 print("Five is greater than two!") ^ IndentationError: unexpected indent

if 5 > 2:
 print("Five is greater than two!") 
        print("Five is greater than two!")
        
ERROR : File "demo_indentation2_error.py", line 3
    print("Five is greater than two!")
    ^
IndentationError: unexpected indent
_____________________________________________________________________________
if 5 > 2:
 print("Five is greater than two!") 
if 5 > 2:
        print("Five is greater than two!") 
        
ERROR : No Error
Posted by: Guest on November-02-2020

Code answers related to "File "demo_indentation2_error.py", line 3 print("Five is greater than two!") ^ IndentationError: unexpected indent"

Python Answers by Framework

Browse Popular Code Answers by Language