95.4k views
18 votes
What is the output of this program? age=4 if age >5: print (“more”) else: print (“less”)

User Corillian
by
3.2k points

1 Answer

6 votes

Answer:

less

Step-by-step explanation:

The input is 4, a number that is not greater than 5. So as a result, it will print "less".

User HussoM
by
3.0k points