Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 908 Bytes

ReadMe.md

File metadata and controls

16 lines (13 loc) · 908 Bytes

Employee Analysis Program

This program analyzes employee data from a CSV file and prints information about:

  • Employees who have worked for 7 consecutive days.
  • Employees with less than 10 hours between shifts but greater than 1 hour.
  • Employees who have worked for more than 14 hours in a single shift.
  • How to Use

  • Install pandas using: pip install pandas.
  • Run the program by executing Code.py.
  • Check the path of the CSV file when prompted. The CSV file should be saved in the Data folder.
  • View the console output for the analysis results.
  • Assumptions

  • The input file is a CSV file with columns: Name, Position, Date, Start_Time, End_Time.
  • The input file is well-formed, and the columns are in the correct order.