Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Dosage Calculator for Multiple Patients | Dosage Calculations and Patient Safety
Python for Pharmacists
セクション 2.  3
single

single

bookChallenge: Dosage Calculator for Multiple Patients

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

Building on your previous experience with function-based dosage calculations and handling patient data, you are now ready to tackle a more complex scenario: calculating medication dosages for multiple patients at once. In real pharmacy practice, you often need to process a list of patients, each with individual characteristics such as name, weight, and prescribed dose per kilogram. Efficiently iterating through this data and producing accurate results is essential for patient safety and effective workflow management.

タスク

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

Write a function that processes a list of patient dictionaries, each containing name, weight_kg, and dose_per_kg. The function must:

  • Calculate the total dose for each patient by multiplying weight_kg by dose_per_kg.
  • Return a list of dictionaries, each with the patient's name and their calculated_dose.
  • Print the name of the patient with the highest calculated dose.

解答

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

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

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

セクション 2.  3
single

single

AIに質問する

expand

AIに質問する

ChatGPT

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

some-alt