+ 1

What is return in python ?

please explain me about return function in python

3rd Jun 2018, 8:26 PM
Thameem Ansari
Thameem Ansari - avatar
4 Réponses
+ 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
3rd Jun 2018, 8:29 PM
Scooby
Scooby - avatar
+ 3
Note: return is a statement, not a function.
3rd Jun 2018, 10:50 PM
Pedro Demingos
Pedro Demingos - avatar
+ 1
Thank You ...
3rd Jun 2018, 8:37 PM
Thameem Ansari
Thameem Ansari - avatar