return Statement #python #coding #easy #programming #how #tiktok #short
'''
return statement = function send python values
/ objects back to the caller
'''
def age(a,b):
return a - b
My_age = age(2021,1995)
print("i'm ", My_age )