1. Write data using openpyxl
2. Write data using pandas
3. Read data using openpyxl
4. Read data using pandas
5. Creating Multiple Sheets in master excel file
6. Combining multiple excel speadsheet into a master excel
7. Plotting bar graph
8. Plotting pie graph
9. Sample Project 1
10. Sample Project 2
Task 1: we are going to add two more column in excel spreadsheet Result and Grade.
In Result column we will put pass and Failed based on Percentage He/She got.
1. Pass: If percentage is greater than and equal to 40. 2. Failed: If percentage is less than 40
In Grade column we will put 1st class, 2nd class, 3rd class and Failed based on Percentage He/She got. 1. 1st class: If percentage greater than equal to 60. 2. 2nd class: If percentage greater than equal to 50 but less than 60. 3. 3rd class: If percentage greater than equal to 40 but less than 50. 4. Failed: If percentage less than 40.
Task 2: After doing the first task we will create multiple sheet in the same excel file base on Grade He/She got
In this project we are separating the records in different excel spreadsheet for different **Grade**.
All the task is same as **Simple Project 1** but only differece is that we are putting different **Grade** data in different excel spreadsheet.
python
pandas
openpyxl
https://openpyxl.readthedocs.io/en/stable/
https://zetcode.com/python/openpyxl/