코드카데미로 더듬더듬 파이썬 공부하고 있는 학생입니다.
파이썬의 리스트, 사전형 부분에서 막혀 질문드립니다.
예제가 슈퍼마켓의 품목별 가격과 재고 수량을 사전형으로 만든 뒤
for문을 사용하여 품목별 가격과 재고를 출력하고
또 각 가격과 재고를 곱한 값을 합해 슈퍼마켓의 품목을 모두 팔 경우 총 수입을 구하는 문제인데요
제가 막힌 부분은 마켓의 총 수입을 구하는 부분입니다.
prices = {
"banana" : 4,
"apple" : 2,
"orange" : 1.5,
"pear" : 3,
}
stock = {
"banana" : 6,
"apple" : 0,
"orange" : 32,
"pear" : 15,
}
for key in prices:
print key
print "price: %s" % prices[key]
print "stock: %s" % stock[key]
여기까지가 지금 진행한 부분이고 문제에 대한 설명은
아래와 같습니다. 어떤 명령어를 사용하라는 지시도 없고 막혀서 끙끙거리고 있습니다.
도움 부탁드립니다ㅠ
Let's determine how much money you would make if you sold all of your food.
Create a variable called total
and set it to zero.
Loop through the prices
dictionaries.
- For each key in
prices
, multiply the number in prices
by the number in stock
. Print that value into the console and then add it to total
. - Finally, outside your loop,
print total
.