Code:
def h(): print('hey') print(h(),'hello')Output:Output:hey None helloPlease someone explain me the output. I am a beginner and have just started learning python. 