When I try to create a .py file with return in a function like provided below
def results(s1,s2):
return s1+s2
results(3,4)
it does not show the result when i try to run the .py file in terminal, why is it like this
And also please elaborately explain me where and how to use the RETURN statement and its purpose