in Python by (31.6k points)
Is It Mandatory For A Python Function To Return A Value?

1 Answer

0 votes
by (32.2k points)

It is not at all necessary for a function to return any value. However, if needed, we can use None as a return value.

Related questions

0 votes
asked May 16, 2020 in Python by Robindeniel (20.8k points)
...