This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Function to display greetings and show some promotional items and its price | |
def display_greetings(name): | |
print(f"Welcome to {name} supermarket! Today's promotional items are:") | |
print("----------------------------------------------------------") | |
print() | |
# Function to display items | |
def display_items(msg, items): | |
print(f"{msg}") | |
print() |
OlderNewer