0 votes
in Python by
Can you please explain what is the return keyword used for in Python Language?

1 Answer

0 votes
by

The purpose of a function is to receive the inputs and return some output.

The return is a Python Language statement which we can use in a function for sending a value back to its caller.

...