0 votes
in Python Flask by
How does a function return values?

1 Answer

0 votes
by
A function uses the ‘return’ keyword to return a value. Take a look:

>>> def add(a,b):

return a+b
...