# myApplication.py file name # Module Name myApplication (filename without the extension) # Method2 for importing functions import Chapter4.myFunctions as mf # Call myHeader() # Method 1 for importing functions # from MODULENAME import FUNCTIONNAME #from Chapter4.myFunctions import myHeader mf.myHeader() # production print("--- Enter Your Contact Information ---") mf.userInputs() # call to the defined function def # assignment here is where you can covert for data types setter firstName = i_firstname # prop = prop var name data type lastName = i_lastName age = int(i_age) print("--- Entered Contact Information ---") mf.fullName() # Contact Update Menu print("---- Update Contact Information ---") mf.fullName()