I don't know why result = my_function() returns only hello there and what's up, and print(result) returns only 52.
(Code)
def my_function():
print("hello there")
print("what's up")
return 52
print("done")
result = my_function()
print(result)