131k views
2 votes
PLEASE HURRY!!!

What is the output of this program?

age = 4
if age > 5:
print("more")
else:
print("less")
Output: ______

User Qpingu
by
7.6k points

2 Answers

0 votes
Less is the answer I think
User Dardoneli
by
8.2k points
6 votes

Since age is less than 5, the else statement will run. The output will be less

User Paul Zaczkowski
by
8.3k points