Skip to content

Instantly share code, notes, and snippets.

View andrewflash's full-sized avatar

Andri Rahmadhani andrewflash

  • Ciamis, Indonesia
View GitHub Profile
@andrewflash
andrewflash / supermarket.py
Created May 4, 2023 14:28
Supermarket Simulation in Python
# 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()