Ch 22 and or oprator
# Use for check two or more condition
name = "ankit"
age =19
if name=="ankit" and age == 19:
print("true")
else:
print("false")
#This function can use to check all the condition
# in or statement if condition is true overall the all condition are true automatically
Comments
Post a Comment