In [1]:
def hello():
print("Hello! World!!")
hello()
In [2]:
def hello(object):
print("Hello " + object + "!")
hello("cat")
In [ ]: