# myTemplateParts.py # namespace tp # Header def appHeader(): # : defines that there is a suboperation/scope being defined # scope of the object/keyword is indented in python or 4 nbsp print("Welcome to my application.") print("==========================") print() # Footer # Main Menu # Products Menu def productsMenu(): print("Products Menu") print("=============") print("1. View Products") # viewProducts() print("2. Add New Product") # addNewProduct() print("3. Edit Product") # editProduct() print("4. Delete Product") # deleteProduct() print() optionID = int(input("Select Product Option: ")) print(optionID) # Admin Menu