from PersonFile import Person #Only imports class Person not function fun from PersonFile import fun import PersonFile #Author: James Tam #Version: November 17, 2024 #Learning objective: importing of just name of the class and nothing else i.e. the name fun() not imported def start(): aPerson = Person() aPerson.sayName() #Neither of the instructions will work, names have not been imported fun() PersonFile.fun() start()