# myFunctions.py camelCase ## NOT see the if __name__ == '__main__' # Reusable Code ## pass keyword helps to create your heiarchy without debugging issues # User Input Functions def userInputs(): firstName = input("Enter the first name: ") # -> memory lastName = input("Enter the last name: ") # -> memory # print(firstName, lastName) # -> calls 2 objs from memory # return the 2 objs to application return firstName, lastName # tuple(immutable) def fullName(firstName, lastName): fullName = firstName + ' ' + lastName return fullName # tuple('Bob Smith') # View Functions def myHeader(): print("----- Customer Admin Dashboard -----") print() # or "\n" print("----- Main Menu -----") myMainMenu() def myMainMenu(): # CRUD -> Create, Read, Update, Delete print("1 -> New Contact") print("2 -> Update Contact") print("3 -> View Contact") print("4 -> Delete Contact") def myHelpMenu(): pass