Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

conditional and in python

if 1 > 2 and 4 < 10:
    print("condition not met")

if 4 < 10 or 1 < 2:
    print("condition met")
Source by opentechschool.github.io #
 
PREVIOUS NEXT
Tagged: #conditional #python
ADD COMMENT
Topic
Name
2+6 =