1# defining a function with no input values
2def function():
3 print("test")
4# recalling function above
5function()
6
7#or
8
9# defining a function with two input values
10def function(input1, input2):
11 print(input1)
12 print(input2)
13# recalling the function with two input values
14function(input1, input2)