FAQ: Taking a Vacation - Before We Begin

This community-built FAQ covers the “Before We Begin” exercise from the lesson “Taking a Vacation”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Learn Python

FAQs on the exercise Before We Begin

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head here.

Looking for motivation to keep learning? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

In the following,

def bigger(first, second):
print max(first, second)
return True

What is the use of return True in this function?
Thank you in advance!!

12 Likes

I have the same question.

1 Like

Even me. Why return True!?
In the example code, would it not be better to assign the built-in function (max()) result to a variable and then return that variable instead of returning True?

1 Like

Hellooo…???
I also have the same question. When and how would “return True” make sense?

It’s weird this never got answered - inquiring minds want to know!
Please? Anybody?

because we want to define the function and do something with it in this case return the value that is true, and then you can use this or store this in a variable ie as a booleon.
return and print are similar but not the same
return gives you a value to be manipulated, ie you can make it do something else:
x = launch nukes (your_function)
vs print
if you print it just prints the answer and you can’t do anything with it. in this case it will say true, but you can’t use that as a variable.
tbh idk i’m just trying to make sense of it, and thats how it looks to me.