Python Project: COVID-19 - Exercises, Practice, Solution
Python COVID-19 [ 14 exercises with solution]
[An editor is available at the bottom of the page to write and execute the scripts.]
From Wikipedia,
Coronavirus disease 2019 (COVID-19) is an infectious disease caused by severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2). The disease was first identified in 2019 in Wuhan, China, and has since spread globally, resulting in the 2019–20 coronavirus pandemic. Common symptoms include fever, cough and shortness of breath. Muscle pain, sputum production and sore throat are less common. The rate of deaths per number of diagnosed cases is on average 3.4%, ranging from 0.2% in those less than 20 to approximately 15% in those over 80 years old.
Data Source (Date wise) : 2019 Novel Coronavirus COVID-19 (2019-nCoV) Data Repository by Johns Hopkins CSSE
Data Source: https://github.com/CSSEGISandData/COVID-19/tree/master/csse_covid_19_data/csse_covid_19_daily_reports
File naming convention
MM-DD-YYYY.csv in UTC.
Field description
- Province/State: China - province name; US/Canada/Australia/ - city name, state/province name; Others - name of the event (e.g., "Diamond Princess" cruise ship); other countries - blank.
- Country/Region: country/region name conforming to WHO (will be updated).
- Last Update: MM/DD/YYYY HH:mm (24 hour format, in UTC).
- Confirmed: the number of confirmed cases. For Hubei Province: from Feb 13 (GMT +8), we report both clinically diagnosed and lab-confirmed cases. For lab-confirmed cases only (Before Feb 17), please refer to who_covid_19_situation_reports. For Italy, diagnosis standard might be changed since Feb 27 to "slow the growth of new case numbers." (Source)
- Deaths: the number of deaths.
- Recovered: the number of recovered cases.
- Files after Feb 1 (UTC): once a day around 23:59 (UTC).
- Files on and before Feb 1 (UTC): the last updated files before 23:59 (UTC).
Using above dataset we have created some exercises on COVID-19 (Spread of the novel coronavirus, Analysis, Visualization, Prediction & Comparisons
1. Write a Python program to display first 5 rows from COVID-19 dataset. Also print the dataset information and check the missing values. Go to the editor
Click me to see the sample solution
2. Write a Python program to get the latest number of confirmed, deaths, recovered and active cases of Novel Coronavirus (COVID-19) Country wise. Go to the editor
Click me to see the sample solution
3. Write a Python program to get the latest number of confirmed deaths and recovered people of Novel Coronavirus (COVID-19) cases Country/Region - Province/State wise.Go to the editor
Click me to see the sample solution
4. Write a Python program to get the Chinese province wise cases of confirmed, deaths and recovered cases of Novel Coronavirus (COVID-19). Go to the editor
Click me to see the sample solution
5. Write a Python program to get the latest country wise deaths cases of Novel Coronavirus (COVID-19). Go to the editor
Click me to see the sample solution
6. Write a Python program to list countries with no cases of Novel Coronavirus (COVID-19) recovered. Go to the editor
Click me to see the sample solution
7. Write a Python program to list countries with all cases of Novel Coronavirus (COVID-19) died. Go to the editor
Click me to see the sample solution
8. Write a Python program to list countries with all cases of Novel Coronavirus (COVID-19) recovered. Go to the editor
Click me to see the sample solution
9. Write a Python program to get the top 10 countries data (Last Update, Country/Region, Confirmed, Deaths, Recovered) of Novel Coronavirus (COVID-19). Go to the editor
Click me to see the sample solution
10. Write a Python program to create a plot (lines) of total deaths, confirmed, recovered and active cases Country wise where deaths greater than 150. Go to the editor
Click me to see the sample solution
11. Write a Python program to visualize the state/province wise death cases of Novel Coronavirus (COVID-19) in USA. Go to the editor
Click me to see the sample solution
12. Write a Python program to visualize the state/province wise Active cases of Novel Coronavirus (COVID-19) in USA. Go to the editor
Click me to see the sample solution
13. Write a Python program to visualize the state/province wise combine number of confirmed, deaths, recovered, active Novel Coronavirus (COVID-19) cases in USA. Go to the editor
Click me to see the sample solution
14. Write a Python program to visualize Worldwide Confirmed Novel Coronavirus (COVID-19) cases over time. Go to the editor
Click me to see the sample solution
---More----
Python Code Editor:
More to Come !
Do not submit any solution of the above exercises at here, if you want to contribute go to the appropriate exercise page.
Test your Python skills with w3resource's quiz
Python: Tips of the Day
Python: Unknown Arguments Using *arguments
If your function can take in any number of arguments then add a * in front of the parameter name:
def myfunc(*arguments): for a in arguments: print a myfunc(a) myfunc(a,b) myfunc(a,b,c)
- New Content published on w3resource :
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- React - JavaScript Library
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework