Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python logical operators code

children_above_five= True
have_good_health= True
if children_above_five and have_good_health:
    print("Eligible to get admission in Primary school.")
children_above_five= True
have_good_health= False
if children_above_five or have_good_health:
    print("Eligible to get admission in Primary school.")
children_above_five= True
have_good_health= False
if children_above_five and not have_good_health:
    print("Eligible to get admission in Primary school.")
Source by elzero.org #
 
PREVIOUS NEXT
Tagged: #python #logical #operators #code
ADD COMMENT
Topic
Name
5+3 =