Write a function new_cases (date, state) that takes in two strings representing a date and a two-letter state abbreviation, and returns an integer representing the number of new cases reported by the given state on that date. If there is no row in the file with the given state/date combination, the function should instead return You may assume that the covid_data.csv file will exist within the same folder as hw08.py, and will be formatted in the same manner as the one given to you. You are permitted to import the csv module, but this is not required. Examples: >>> new_cases ('08/08/2020', 'MN') 797 >>> new_cases('11/21/2021', 'NE') 0 >>> new_cases ('01/05/2022', 'IA') 4268 >>> new_cases ('02/09/2023', 'MO') -1 >>> new_cases ('10/22/2020', 'QQ') -1

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%

In python

Download the hw08files.zip folder from Canvas, and
extract the files. Create your hw08.py file in the same
directory as the extracted files: all of the test cases for this
assignment will assume that your Python file is in the
same folder as the sample files.
Open up the covid_data.csv file provided and browse
the data. This CSV file was obtained from the CDC
website:
https://data.cdc.gov/Case-Surveillance/United-States-CO
VID-19-Cases-and-Deaths-by-State-o/9mfq-cb36. It
contains data reported by each state about the number of
COVID-19 cases in the state on various dates.
The columns you'll need to use in this problem are as
follows:
•
First column: submission date - this column
contains the date each data point was submitted
Second column: state - this column contains a
(usually) two letter abbreviation for the state
submitting the data.
Sixth column: new case - this column contains
the number of new COVID-19 cases detected
since the last report from that state.
Transcribed Image Text:Download the hw08files.zip folder from Canvas, and extract the files. Create your hw08.py file in the same directory as the extracted files: all of the test cases for this assignment will assume that your Python file is in the same folder as the sample files. Open up the covid_data.csv file provided and browse the data. This CSV file was obtained from the CDC website: https://data.cdc.gov/Case-Surveillance/United-States-CO VID-19-Cases-and-Deaths-by-State-o/9mfq-cb36. It contains data reported by each state about the number of COVID-19 cases in the state on various dates. The columns you'll need to use in this problem are as follows: • First column: submission date - this column contains the date each data point was submitted Second column: state - this column contains a (usually) two letter abbreviation for the state submitting the data. Sixth column: new case - this column contains the number of new COVID-19 cases detected since the last report from that state.
Write a function new_cases (date, state) that takes
in two strings representing a date and a two-letter state
abbreviation, and returns an integer representing the
number of new cases reported by the given state on that
date. If there is no row in the file with the given
state/date combination, the function should instead return
-1.
You may assume that the covid_data.csv file will
exist within the same folder as hw08.py, and will be
formatted in the same manner as the one given to you.
You are permitted to import the csv module, but this is
not required.
Examples:
>>> new_cases('08/08/2020', 'MN')
797
>>> new_cases ('11/21/2021', 'NE')
0
>>> new_cases('01/05/2022', 'IA')
4268
>>> new_cases('02/09/2023', 'MO')
-1
>>> new_cases ('10/22/2020', 'QQ')
-1
Transcribed Image Text:Write a function new_cases (date, state) that takes in two strings representing a date and a two-letter state abbreviation, and returns an integer representing the number of new cases reported by the given state on that date. If there is no row in the file with the given state/date combination, the function should instead return -1. You may assume that the covid_data.csv file will exist within the same folder as hw08.py, and will be formatted in the same manner as the one given to you. You are permitted to import the csv module, but this is not required. Examples: >>> new_cases('08/08/2020', 'MN') 797 >>> new_cases ('11/21/2021', 'NE') 0 >>> new_cases('01/05/2022', 'IA') 4268 >>> new_cases('02/09/2023', 'MO') -1 >>> new_cases ('10/22/2020', 'QQ') -1
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
File Input and Output Operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education