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

Related questions

0 votes
asked Feb 16, 2020 in C Sharp by rahuljain1
0 votes
asked May 12, 2023 in Python Flask by SakshiSharma
...