It looks like you're new here. If you want to get involved, click one of these buttons!
def myfunction()
print(\"Hi\n\")
import mymodule
mymodule.myfunction()
def myfunction(arg):
print(arg)
import mymodule
mymodule.myfunction(\"test\")
def myfunction(x, y):
print(x * y)
import mymodule
x = 2
y = 3
mymodule.myfunction(x, y)