Example & Tutorial understanding programming in easy ways.

What is the return keyword used for in Python?

When we Execute the code inside the function body and want to return some data to further use then we use the keyword return at the last of the function.


Syntax:

def function(a):

      a=a+1

      return a*3

Read More →