📜  讲解return关键字的使用python代码示例

📅  最后修改于: 2022-03-11 14:46:23.493000             🧑  作者: Mango

代码示例1
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