Adds Game
-
المساهمات
19 -
تاريخ الانضمام
-
تاريخ آخر زيارة
إجابات الأسئلة
-
إجابة Adds Game سؤال في الحلقات في لغة Python كانت الإجابة المقبولة
order = {"juice": 2, "bread": 3,"apples": 10,"oranges": 6,"cake": 3}
total = 0.0
for key in order:
total += order[key] * prices[key]
print("Total: ${}.0".format(total))
ولا تزيدي شي