115k views
3 votes
What is the output of this program?

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

2 Answers

3 votes

Answer:

less

Step-by-step explanation:

Edge 2022

What is the output of this program? age = 4 if age > 5: print("more") else-example-1
User Jordan Simba
by
5.4k points
5 votes
the output is less :)))
User Dylan Hettinger
by
5.6k points