spacepaste

  1.  
  2. cost_items = {}
  3. cost_items['user_profiles'] = 3 * 8
  4. cost_items['quiz_content_management'] = 5 * 8
  5. cost_items['quiz_practice'] = 10 * 8
  6. cost_items['reports'] = 5 * 8
  7. total_cost = 0
  8. for item in cost_items:
  9. total_cost += float(cost_items[item])
  10. print(total_cost * 100)
  11.