3. A function checkMain( ) defined in module Allchecks.py is being used in two different programs. In program 1 as Allchecks.checkMain(3, ’A’) and in program 2 as checkMain(4, ’Z’) Why are these two function-call statements different from one another when the function being invoked is just the same ?

In program 1, the import statement must have been
import Allchecks
while in program 2, it must have been
from Allchecks import checkMain