-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathshopping_list.py
47 lines (30 loc) · 1.38 KB
/
shopping_list.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#********************************************************************
#
# Team Edge List Mini-project: THE SHOPPING LIST HELPER
#
# This project prompts users using input() to prompt users
# to add (or remove) items from a shopping list. It starts empty
# and each time the program is run it asks you to either add or
# remove an item from the list. It also updates the user of its
# contents. The shopping list also checks to see if an item
# is already present in the list and prevents you from adding it
# again, giving feedback along the way.
#
# ***************************************************************/
active = True
print("Welcome to Shopping List!")
welcome_message = "Hi! I'm your shopping assistant. Let me take your order. \n You can type 'add milk' to add milk to your shopping list. \n or you can type 'remove milk' to remove it. \n"
print(welcome_message)
#-->Todo: declare a shopping_list list
def prompt_user():
reply = input("What do you want to add or remove? >> ")
return reply
def check_answer(ans):
pass
def add_item():
#this function can take in a string and store it in an array
pass
def remove_item():
pass
while active:
check_answer(prompt_user()) #this makes the program continously prompt and check response while the boolean 'active' returns True