consider a college cricket club in which a student can enroll only if he she is less than 18 and greater than 15 years old write program using not operator
Answers
Answered by
10
Answer:
In python the code is -
age = input ("Enter your age?")
if (age <= 18 && age >= 15):
print("you are eligible for the cricket club ")
Similar questions