Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Zip and Sort Functions | Functions
/
Introduction to Python (generated task tests)
セクション 6.  2
single

single

bookChallenge: Zip and Sort Functions

メニューを表示するにはスワイプしてください

We still have a few functions from the previous chapter to cover, so let's get some practice with them.

Recall the zip() function, which is particularly useful when working with multiple related lists. This function allows you to manage different properties of items simultaneously, such as sorting products while maintaining their associated attributes.

タスク

スワイプしてコーディングを開始

You got three lists: product names, prices, and quantities sold. Your goal is to organize, sort, and display this data in a specific format.

Code Instructions

  • Use zip() to combine the three lists into a list of tuples in the order: (product_name, price, quantity_sold). Assign the result to combined_list.
  • Use sorted() to sort combined_list by product name in ascending order. Assign the sorted result to sorted_products.
  • Loop through sorted_products and print each product's name, price, and quantity sold using the specified format.

Output Requirements

For each product, print:

Product: <product_name>, Price: <product_price>, Quantity Sold: <quantity_sold>

Requirements checklist

  1. Check that combined_list is a list of tuples, where each tuple contains a product name, its corresponding price, and quantity sold, zipped from the original lists.
  2. Check that sorted_products is a list of tuples sorted in ascending order by product name.
  3. Check that the first tuple in sorted_products has the product name "Apple", and its price and quantity sold match the original lists for "Apple".
  4. Check that the second tuple in sorted_products has the product name "Banana", and its price and quantity sold match the original lists for "Banana".
  5. Check that the third tuple in sorted_products has the product name "Cherry", and its price and quantity sold match the original lists for "Cherry".
  6. Check that the fourth tuple in sorted_products has the product name "Mango", and its price and quantity sold match the original lists for "Mango".
  7. Check that the program prints four lines, each containing the correct product name, price, and quantity sold in the specified format.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 6.  2
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt