4 Answers
+ 10
Functions that return values can be used in expressions, just like in math class. When an expression with a function call is evaluated, the function call is effectively replaced temporarily by its returned value. Inside the Python function, the value to be returned is given by the expression in the return statement.
https://www.sololearn.com/learn/Python/2287/
https://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/functions.html
+ 3
Note: return is a statement, not a function.
+ 1
Thank You ...