1
unknown
plain_text
3 years ago
250 B
12
Indexable
price={"bread": 1, "dogs": 2, "cats" : 3}
def count():
total=0
while True:
enter = input("which prod you take?\n")
if enter == "end":
break
total+=price[enter]
return total
count()
print(vigenere_decoder(message, keyword))Editor is loading...