1.

What is the use of keyword 'return' in python? 50 points ✌️ Spam will be reported... ​

Answer»

A return STATEMENT is USED to end the execution of the function call and “RETURNS” the result (value of the expression following the return keyword) to the caller. The statements after the return statements are not executed. If the return statement is without any expression, then the special value NONE is RETURNED.



Discussion

No Comment Found