Invalid syntax on VERY SIMPLE Python if … else statement

后端 未结 7 1804
走了就别回头了
走了就别回头了 2021-01-13 20:05

Can someone explain why I am getting an invalid syntax error from Python\'s interpretor while formulating this simple if...else statement? I don\'t add any tabs myself I sim

相关标签:
7条回答
  • 2021-01-13 20:28

    That's because your else part is empty and also not properly indented with the if.

    if 3 > 0:
        print "voila"
    else:    
        pass
    

    In python pass is equivalent to {} used in other languages like C.

    0 讨论(0)
  • 2021-01-13 20:35

    Click to open image

    The problem is indent only.

    You are using IDLE. When you press enter after first print statement indent of else is same as print by default, which is not OK. You need to go to start of else sentence and press back once. Check in attached image what I mean.

    0 讨论(0)
  • 2021-01-13 20:36

    Python does not allow empty blocks, unlike many other languages (since it doesn't use braces to indicate a block). The pass keyword must be used any time you want to have an empty block (including in if/else statements and methods).

    For example,

    if 3 > 0:
        print('3 greater then 0')
    else:
        pass
    

    Or an empty method:

    def doNothing():
        pass
    
    0 讨论(0)
  • 2021-01-13 20:38

    Else needs to be vertically aligned. Identation is playing a key role in Python. I was getting the same syntax error while using else. Make sure you indent your code properly

    0 讨论(0)
  • 2021-01-13 20:39

    The else block needs to be at the same indent level as the if:

    if 3 > 0:
        print('3 greater then 0')
    else:
        print('3 less than or equal to 0')
    
    0 讨论(0)
  • 2021-01-13 20:43

    it is a obvious mistake we do, when we press enter after the if statement it will come into that intendation,try by keeping the else statement as straight with the if statement.it is a common typographical error

    0 讨论(0)
提交回复
热议问题