Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Yearly Turnover Analysis | Analyzing Employee Data
Python for HR Specialists
セクション 2.  5
single

single

bookChallenge: Yearly Turnover Analysis

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

You have learned how to use Python lists to store HR data and how to perform calculations using elements from these lists. When analyzing employee turnover, it is common to have two lists: one containing the number of employee departures for each year, and another containing the average headcount for each year. By processing these lists element-wise, you can calculate important HR metrics such as the turnover rate for each year.

1234567
departures_per_year = [8, 10, 7, 12] average_headcount_per_year = [80, 85, 83, 90] years = [2020, 2021, 2022, 2023] for year, departures, headcount in zip(years, departures_per_year, average_headcount_per_year): turnover_rate = departures / headcount print(f"Year: {year} - Turnover Rate: {turnover_rate:.2%}")
copy

When presenting turnover rates, it is helpful to display both the year and the calculated percentage in a clear format. You can use Python's formatted string literals (f-strings) to include the year and format the turnover rate as a percentage with two decimal places. This makes your output easy for stakeholders to read and interpret.

タスク

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

Write a function that prints the turnover rate for each year using the provided lists: years, departures, and headcounts.

  • For each year, calculate the turnover rate as the number of departures divided by the average headcount.
  • Format the turnover rate as a percentage with two decimal places.
  • Print a line for each year in the format: "Year: - Turnover Rate: %".

解答

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

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

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

セクション 2.  5
single

single

AIに質問する

expand

AIに質問する

ChatGPT

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

some-alt