Merge pull request #82 from Se3ek/typo-correction

typo in ex2_2
This commit is contained in:
David Beazley
2024-07-31 10:35:08 -05:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -167,7 +167,7 @@ as dictionaries like this:
It would be a shame to do all of that work and then do nothing with It would be a shame to do all of that work and then do nothing with
the data. the data.
In this exercise, you task is this: write a program to answer the In this exercise, your task is this: write a program to answer the
following three questions: following three questions:
1. How many bus routes exist in Chicago? 1. How many bus routes exist in Chicago?

View File

@@ -206,7 +206,7 @@ into 4 separate `append()` operations.
class RideData(collections.abc.Sequence): class RideData(collections.abc.Sequence):
def __init__(self): def __init__(self):
# Each value is a list with all of the values (a column) # Each value is a list with all the values (a column)
self.routes = [] self.routes = []
self.dates = [] self.dates = []
self.daytypes = [] self.daytypes = []