python-hard-way/Misc. learning/pass.py

12 lines
170 B
Python

def funciton1(args): {
print(args)
}
def function2(argument): {
print(argument)
#argument2 = argument + "hi"
function1(args)
}
function2("Hello World")