What is the output of the following code ?
def foo(): print("Welcome to pythoneasy.com") foo() foo()
"Welcome to pythoneasy.com" will be printed each time foo() is called
Comment here: