Given in this repository are 4 files, regarding the data of different fruits:
- number.csv contains the details of the ID of 100 fruits.
- fruits.csv contains the details of the Name of 100 fruits.
- price.csv contains the details of the Price of 100 fruits.
- rotten.csv has the data if that particular fruit is rotten or not.
- Due to improper validations done by the developer, a lot of IDs are missing. Make a not of those IDs, if they're odd then replace them, else delete the entire product
- Some names of the fruits are missing. If the ID of that fruit is missing, then delete it. If ID has been found, replace it with 10th fruit name to its left.
- Most of the prices are in float, where as some are missing or in int. Conver the price from int to float. If the fruit is rotten, declare price as 0.00
- As the entry was made by multiple people, they've used 1 or t for marking "true" and 0 or f for marking false. Convert it to t for true, f for false.