Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 513 Bytes

File metadata and controls

3 lines (2 loc) · 513 Bytes

BabyNames

The two text files 2000_BoysNames.txt and 2000_GirlsNames.txt list the popularity of boys names and girls names in 2000. The format of the file is simple, one line per entry with the name followed by a space followed by the number of children carrying that name. You must write a python program that reads each text file then converts it into a csv format: "name",count then saves the entry in a csv file. The output csv file must include the following header as its first line: "First Name","Count"