Computer Science, asked by pachu654, 5 months ago

what code is used for in : Read 2 persons age and find who is younger in ( python) age 1 = 16 age 2 = 20

Answers

Answered by joshuajampa1607
2

Answer:

I wrote the code here for you:

age1 = 16

age2 = 20

if age1 < age2:

   print("age1 is younger than age2")

else:

   print("age1 is older than age2")

Hope that's what you wanted. Thanks

Similar questions