#Importsos.system('CLS')
#====================================================================# TASK 1: 🧽 “Grand Re-Opening at the Krusty Krab” — First Lists!#====================================================================kitchen_stations = ['grill', 'fryer', 'prep table', 'drive-thru']print("Kitchen Stations:")print(kitchen_stations)print("")input("Press Enter To Continue...")os.system('CLS')
vip1 = input("What's The VIP #1 Name? ")vip2 = input("What's The VIP #2 Name? ")vip3 = input("What's The VIP #3 Name? ")vip4 = input("What's The VIP #4 Name? ")vips = [vip1, vip2, vip3, vip4]print("VIPs:")print(vips)print("")input("Press Enter To Continue...")os.system('CLS')
order1 = int(input("Order 1: How Many Burgers? "))order2 = int(input("Order 2: How Many Burgers? "))order3 = int(input("Order 3: How Many Burgers? "))orders = [order1, order2, order3]print("Full Order List:")print(orders)print("")input("Press Enter To Continue...")os.system('CLS')