Westonci.ca is the ultimate Q&A platform, offering detailed and reliable answers from a knowledgeable community. Join our Q&A platform to connect with experts dedicated to providing precise answers to your questions in different areas. Discover in-depth answers to your questions from a wide network of professionals on our user-friendly Q&A platform.

Challenge 13 - Create a program to ak the uer their age and if it i between 4 and 16 it hould output
"You are in chool", otherwie output "You are not of chool age"


Sagot :

Answer:

age = int(input("Enter your age: "))

if age >= 4 and age <= 16:

   print("You are in school")

else:

   print("You are not in school age")

Explanation:

since you didnt mention the program you’re using, im going to answer it using python. if there's anything to amend let me know!