Python Conditional Statement
Jump to navigation
Jump to search
A Python Conditional Statement is a programming conditional statement expressed in the Perl Language.
- Counter-Example(s):
- See: Python Pattern Matching Expression.
Examples
if a > 5: print (a,">",5) elif a <= 3: print (a,"<=",7) else: print ("Neither test was true")