elif Clauses : If : Statement PYTHON TUTORIALS


PYTHON TUTORIALS » Statement » If »

 

elif Clauses


num = input('Enter a number: ')
if num > 0
    print 'The number is positive'
elif num < 0
    print 'The number is negative'
else
    print 'The number is zero'



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Statement
» If