Python - Return Statement
================
def myfunction():
return 3+3
print(“Hello, World!”)
print(myfunction())