Program to demonstrate Using the Same Variable Name in Calling Function and Function DefinitionMay 22, 2021 · One min readKaustubh KulkarniServiceNow DeveloperQue > Program to demonstrate Using the Same Variable Name in Calling Function and Function DefinitionProgramfile.pydef start(msg): print(msg)msg="Hello"start(msg)Output:OutputHello