0 votes
in Python by
What Is The Return Keyword Used For In Python?

1 Answer

0 votes
by

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

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

...