Skip to content

Commit 5d6519c

Browse files
author
Alicia
authored
Create Assignment+4.py
1 parent 8c8d610 commit 5d6519c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assignment+4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def get_recession_start():
6464
def get_recession_end():
6565
'''Returns the year and quarter of the recession end time as a
6666
string value in a format such as 2005q3'''
67-
#figured out that gdp[gdp['Quarter'] == '2008q2'].index.tolist() was [245], but for some reason it won't compile right.
67+
#figured out that gdp[gdp['Quarter'] == '2008q2'].index.tolist() was [245]
6868
gdp2 = gdp.loc[245:]
6969
recession_end = []
7070
for i in range(len(gdp2)- 2):

0 commit comments

Comments
 (0)