diff --git a/employee_data.csv b/employee_data.csv index 59477dc..a4ad2b4 100644 --- a/employee_data.csv +++ b/employee_data.csv @@ -1,3 +1,3 @@ name,department,birthday month -John Smith,Accounting,November +Sowmith,Accounting,November Erica Meyers,IT,March \ No newline at end of file diff --git a/reading_csvfile.py b/reading_csvfile.py index 89b318f..d12e643 100644 --- a/reading_csvfile.py +++ b/reading_csvfile.py @@ -8,6 +8,6 @@ print(f"Column names are {', '.join(row)}") line_count += 1 else: - print(f"\t{row[0]} works in the {row[1]} department, and was born in {row[2]}.") + print(f"\t{row[0]} in the {row[1]} department, and was born in {row[2]}.") line_count += 1 print(f"Processed {line_count} lines")