diff --git a/__pycache__/__init__.cpython-36.pyc b/__pycache__/__init__.cpython-36.pyc index b4b7209..722c1ea 100644 Binary files a/__pycache__/__init__.cpython-36.pyc and b/__pycache__/__init__.cpython-36.pyc differ diff --git a/q01_load_data/__pycache__/__init__.cpython-36.pyc b/q01_load_data/__pycache__/__init__.cpython-36.pyc index 92b3ac2..05e1440 100644 Binary files a/q01_load_data/__pycache__/__init__.cpython-36.pyc and b/q01_load_data/__pycache__/__init__.cpython-36.pyc differ diff --git a/q01_load_data/__pycache__/build.cpython-36.pyc b/q01_load_data/__pycache__/build.cpython-36.pyc index e27baf6..2a3e9ae 100644 Binary files a/q01_load_data/__pycache__/build.cpython-36.pyc and b/q01_load_data/__pycache__/build.cpython-36.pyc differ diff --git a/q01_load_data/build.py b/q01_load_data/build.py index 69d7209..5c74bb5 100644 --- a/q01_load_data/build.py +++ b/q01_load_data/build.py @@ -1,5 +1,8 @@ import pandas as pd - +path = 'data/excel-comp-data.xlsx' def q01_load_data(path): - "write your solution here" + df = pd.read_excel(path) + df['state'] = df['state'].str.lower() + df['total'] = df['Jan'] + df['Feb'] + df['Mar'] + return df diff --git a/q01_load_data/tests/__pycache__/__init__.cpython-36.pyc b/q01_load_data/tests/__pycache__/__init__.cpython-36.pyc index 2a2dfc7..5776d56 100644 Binary files a/q01_load_data/tests/__pycache__/__init__.cpython-36.pyc and b/q01_load_data/tests/__pycache__/__init__.cpython-36.pyc differ diff --git a/q01_load_data/tests/__pycache__/tests.cpython-36.pyc b/q01_load_data/tests/__pycache__/tests.cpython-36.pyc index 76e04c8..6c7fcbd 100644 Binary files a/q01_load_data/tests/__pycache__/tests.cpython-36.pyc and b/q01_load_data/tests/__pycache__/tests.cpython-36.pyc differ diff --git a/q02_append_row/__pycache__/__init__.cpython-36.pyc b/q02_append_row/__pycache__/__init__.cpython-36.pyc index de0cf61..2385e2d 100644 Binary files a/q02_append_row/__pycache__/__init__.cpython-36.pyc and b/q02_append_row/__pycache__/__init__.cpython-36.pyc differ diff --git a/q02_append_row/__pycache__/build.cpython-36.pyc b/q02_append_row/__pycache__/build.cpython-36.pyc index 5088267..c5cee8f 100644 Binary files a/q02_append_row/__pycache__/build.cpython-36.pyc and b/q02_append_row/__pycache__/build.cpython-36.pyc differ diff --git a/q02_append_row/build.py b/q02_append_row/build.py index af3701d..e1163c6 100644 --- a/q02_append_row/build.py +++ b/q02_append_row/build.py @@ -1,12 +1,17 @@ import pandas as pd import sys, os -#sys.path.append(os.path.join(os.path.dirname(os.curdir))) -from greyatomlib.pandas_guided_project.q01_load_data.build import q01_load_data - - +sys.path.append(os.path.join(os.path.dirname(os.curdir))) +#from greyatomlib.pandas_guided_project.q01_load_data.build import q01_load_data +from q01_load_data.build import q01_load_data +path = 'data/excel-comp-data.xlsx' def q02_append_row(path): - "write your solution here" - - - - + df = q01_load_data(path) + df1 = df[['Jan', 'Feb', 'Mar', 'total']].sum(axis=0) + df1 = pd.DataFrame(df1) + df2 = pd.DataFrame(columns=['Jan', 'Feb', 'Mar', 'total']) + df2['Jan'] = df1.loc['Jan'] + df2['Feb'] = df1.loc['Feb'] + df2['Mar'] = df1.loc['Mar'] + df2['total'] = df1.loc['total'] + df3 = df.append(df2, ignore_index=True) + return df3 diff --git a/q02_append_row/tests/__pycache__/__init__.cpython-36.pyc b/q02_append_row/tests/__pycache__/__init__.cpython-36.pyc index dab3eca..a700885 100644 Binary files a/q02_append_row/tests/__pycache__/__init__.cpython-36.pyc and b/q02_append_row/tests/__pycache__/__init__.cpython-36.pyc differ diff --git a/q02_append_row/tests/__pycache__/tests.cpython-36.pyc b/q02_append_row/tests/__pycache__/tests.cpython-36.pyc index 742ee79..da356de 100644 Binary files a/q02_append_row/tests/__pycache__/tests.cpython-36.pyc and b/q02_append_row/tests/__pycache__/tests.cpython-36.pyc differ diff --git a/q03_scrape_clean/__pycache__/__init__.cpython-36.pyc b/q03_scrape_clean/__pycache__/__init__.cpython-36.pyc index e99e173..ed769bc 100644 Binary files a/q03_scrape_clean/__pycache__/__init__.cpython-36.pyc and b/q03_scrape_clean/__pycache__/__init__.cpython-36.pyc differ diff --git a/q03_scrape_clean/__pycache__/build.cpython-36.pyc b/q03_scrape_clean/__pycache__/build.cpython-36.pyc index cdec2c4..4ae21e3 100644 Binary files a/q03_scrape_clean/__pycache__/build.cpython-36.pyc and b/q03_scrape_clean/__pycache__/build.cpython-36.pyc differ diff --git a/q03_scrape_clean/build.py b/q03_scrape_clean/build.py index a88e3e2..9655b84 100644 --- a/q03_scrape_clean/build.py +++ b/q03_scrape_clean/build.py @@ -3,7 +3,27 @@ import requests sys.path.append(os.path.join(os.path.dirname(os.curdir))) - +path = 'https://en.wikipedia.org/wiki/List_of_U.S._state_abbreviations' def q03_scrape_clean(url): - "write your solution here" + page = requests.get(url) + df = pd.read_html(page.text) + df1 = df[0].iloc[11:,0] + df2 = df[0].iloc[11:,1] + df3 = df[0].iloc[11:,2] + df4 = df[0].iloc[11:,3] + df5 = df[0].iloc[11:,4] + df6 = df[0].iloc[11:,5] + df7 = df[0].iloc[11:,6] + df8 = df[0].iloc[11:,7] + df9 = df[0].iloc[11:,8] + df10 = df[0].iloc[11:,9] + ans = pd.concat([df1,df2,df3,df4,df5,df6,df7,df8,df9,df10], axis=1) + ans.rename(mapper={0:'Name', 1:'Status', 2:'ISO', 3:'ANSI0', 4:'ANSI1', 5:'USPS', 6:'USCG', 7:'GPO', 8:'AP', 9:'Other Abbrevations'}, inplace=True, axis=1) + ans.drop(ans.index[0], axis=0, inplace=True) + ans['ex1'] = 0 + ans['ex2'] = 0 + ans['ex3'] = 0 + ans['ex4'] = 0 + ans['ex5'] = 0 + return ans diff --git a/q03_scrape_clean/tests/__pycache__/__init__.cpython-36.pyc b/q03_scrape_clean/tests/__pycache__/__init__.cpython-36.pyc index bee36fb..8c645ac 100644 Binary files a/q03_scrape_clean/tests/__pycache__/__init__.cpython-36.pyc and b/q03_scrape_clean/tests/__pycache__/__init__.cpython-36.pyc differ diff --git a/q03_scrape_clean/tests/__pycache__/tests.cpython-36.pyc b/q03_scrape_clean/tests/__pycache__/tests.cpython-36.pyc index 8529c87..fbe214b 100644 Binary files a/q03_scrape_clean/tests/__pycache__/tests.cpython-36.pyc and b/q03_scrape_clean/tests/__pycache__/tests.cpython-36.pyc differ diff --git a/q04_mapping/__pycache__/__init__.cpython-36.pyc b/q04_mapping/__pycache__/__init__.cpython-36.pyc index ee0618f..a43578e 100644 Binary files a/q04_mapping/__pycache__/__init__.cpython-36.pyc and b/q04_mapping/__pycache__/__init__.cpython-36.pyc differ diff --git a/q04_mapping/__pycache__/build.cpython-36.pyc b/q04_mapping/__pycache__/build.cpython-36.pyc index 8283165..67ed4ed 100644 Binary files a/q04_mapping/__pycache__/build.cpython-36.pyc and b/q04_mapping/__pycache__/build.cpython-36.pyc differ diff --git a/q04_mapping/build.py b/q04_mapping/build.py index 914cfa8..eeea29a 100644 --- a/q04_mapping/build.py +++ b/q04_mapping/build.py @@ -1,10 +1,28 @@ import pandas as pd import sys, os import numpy as np -#sys.path.append(os.path.join(os.path.dirname(os.curdir))) -from greyatomlib.pandas_guided_project.q02_append_row.build import q02_append_row +sys.path.append(os.path.join(os.path.dirname(os.curdir))) +from q02_append_row.build import q02_append_row +path1 = 'data/excel-comp-data.xlsx' +path2 = 'data/scraped.csv' + def q04_mapping(path1,path2): - "write your solution here" + df1 = q02_append_row(path1) + df1['abbr'] = np.nan + df2 = pd.read_csv(path2) + ab = df2.iloc[:,7] + name = df2['United States of America'] + d = {} + for i in range(0,ab.shape[0]): + d[name[i].lower()] = ab[i] + for i in range(0,df1.shape[0]): + if df1.iloc[i,:]['state'] in d.keys(): + df1.iloc[i,-1] = d[df1.iloc[i,:]['state']] + df2 = df1.iloc[:,0:5] + df2['total'] = df1['total'] + df2['abbr'] = df1['abbr'] + return df2 +q04_mapping(path1,path2) diff --git a/q04_mapping/tests/__pycache__/__init__.cpython-36.pyc b/q04_mapping/tests/__pycache__/__init__.cpython-36.pyc index eef3d6b..dfca90b 100644 Binary files a/q04_mapping/tests/__pycache__/__init__.cpython-36.pyc and b/q04_mapping/tests/__pycache__/__init__.cpython-36.pyc differ diff --git a/q04_mapping/tests/__pycache__/test.cpython-36.pyc b/q04_mapping/tests/__pycache__/test.cpython-36.pyc index 7f7c96e..141d02a 100644 Binary files a/q04_mapping/tests/__pycache__/test.cpython-36.pyc and b/q04_mapping/tests/__pycache__/test.cpython-36.pyc differ diff --git a/q05_replace_missing_values/__pycache__/__init__.cpython-36.pyc b/q05_replace_missing_values/__pycache__/__init__.cpython-36.pyc index f50c1d5..7c77881 100644 Binary files a/q05_replace_missing_values/__pycache__/__init__.cpython-36.pyc and b/q05_replace_missing_values/__pycache__/__init__.cpython-36.pyc differ diff --git a/q05_replace_missing_values/__pycache__/build.cpython-36.pyc b/q05_replace_missing_values/__pycache__/build.cpython-36.pyc index 6a32964..b5a89b1 100644 Binary files a/q05_replace_missing_values/__pycache__/build.cpython-36.pyc and b/q05_replace_missing_values/__pycache__/build.cpython-36.pyc differ diff --git a/q05_replace_missing_values/build.py b/q05_replace_missing_values/build.py index 97d9755..e0c04d0 100644 --- a/q05_replace_missing_values/build.py +++ b/q05_replace_missing_values/build.py @@ -2,12 +2,16 @@ import numpy as np import sys import os -#sys.path.append(os.path.join(os.path.dirname(os.curdir))) -from greyatomlib.pandas_guided_project.q04_mapping.build import q04_mapping +sys.path.append(os.path.join(os.path.dirname(os.curdir))) +from q04_mapping.build import q04_mapping path1 = 'data/excel-comp-data.xlsx' path2 = 'data/scraped.csv' def q05_replace_missing_values(path1,path2): + df = q04_mapping(path1,path2) + df.iloc[6,6] = 'MS' + df.iloc[10,6] = 'TN' + return df -#print(q05_replace_missing_values(path1,path2).shape) \ No newline at end of file +#q05_replace_missing_values(path1,path2) diff --git a/q05_replace_missing_values/tests/__pycache__/__init__.cpython-36.pyc b/q05_replace_missing_values/tests/__pycache__/__init__.cpython-36.pyc index 03391a7..8b482cf 100644 Binary files a/q05_replace_missing_values/tests/__pycache__/__init__.cpython-36.pyc and b/q05_replace_missing_values/tests/__pycache__/__init__.cpython-36.pyc differ diff --git a/q05_replace_missing_values/tests/__pycache__/tests.cpython-36.pyc b/q05_replace_missing_values/tests/__pycache__/tests.cpython-36.pyc index 3b9d62a..d12773a 100644 Binary files a/q05_replace_missing_values/tests/__pycache__/tests.cpython-36.pyc and b/q05_replace_missing_values/tests/__pycache__/tests.cpython-36.pyc differ diff --git a/q06_sub_total/__pycache__/__init__.cpython-36.pyc b/q06_sub_total/__pycache__/__init__.cpython-36.pyc index f70134c..bb56aa1 100644 Binary files a/q06_sub_total/__pycache__/__init__.cpython-36.pyc and b/q06_sub_total/__pycache__/__init__.cpython-36.pyc differ diff --git a/q06_sub_total/__pycache__/build.cpython-36.pyc b/q06_sub_total/__pycache__/build.cpython-36.pyc index adaf0ce..b2226e5 100644 Binary files a/q06_sub_total/__pycache__/build.cpython-36.pyc and b/q06_sub_total/__pycache__/build.cpython-36.pyc differ diff --git a/q06_sub_total/build.py b/q06_sub_total/build.py index c420838..7a679d8 100644 --- a/q06_sub_total/build.py +++ b/q06_sub_total/build.py @@ -3,14 +3,16 @@ from sklearn.model_selection import train_test_split import sys import os -#sys.path.append(os.path.join(os.path.dirname(os.curdir))) -from greyatomlib.pandas_guided_project.q05_replace_missing_values.build import q05_replace_missing_values +sys.path.append(os.path.join(os.path.dirname(os.curdir))) +from q05_replace_missing_values.build import q05_replace_missing_values path1 = 'data/excel-comp-data.xlsx' path2 = 'data/scraped.csv' def q06_sub_total(path1,path2): - "write your solution here" - - + df = q05_replace_missing_values(path1,path2) + #print(df) + df1 = df.groupby('abbr').sum() + return df1 +#q06_sub_total(path1,path2) diff --git a/q06_sub_total/tests/__pycache__/__init__.cpython-36.pyc b/q06_sub_total/tests/__pycache__/__init__.cpython-36.pyc index 93ecd56..f80a943 100644 Binary files a/q06_sub_total/tests/__pycache__/__init__.cpython-36.pyc and b/q06_sub_total/tests/__pycache__/__init__.cpython-36.pyc differ diff --git a/q06_sub_total/tests/__pycache__/test.cpython-36.pyc b/q06_sub_total/tests/__pycache__/test.cpython-36.pyc index 691280a..9f17aaf 100644 Binary files a/q06_sub_total/tests/__pycache__/test.cpython-36.pyc and b/q06_sub_total/tests/__pycache__/test.cpython-36.pyc differ diff --git a/q07_symbols/__pycache__/__init__.cpython-36.pyc b/q07_symbols/__pycache__/__init__.cpython-36.pyc index 60b0cca..b853026 100644 Binary files a/q07_symbols/__pycache__/__init__.cpython-36.pyc and b/q07_symbols/__pycache__/__init__.cpython-36.pyc differ diff --git a/q07_symbols/__pycache__/build.cpython-36.pyc b/q07_symbols/__pycache__/build.cpython-36.pyc index d28eaa9..c1d88a9 100644 Binary files a/q07_symbols/__pycache__/build.cpython-36.pyc and b/q07_symbols/__pycache__/build.cpython-36.pyc differ diff --git a/q07_symbols/build.py b/q07_symbols/build.py index b8cbb92..5f246eb 100644 --- a/q07_symbols/build.py +++ b/q07_symbols/build.py @@ -4,15 +4,19 @@ import sys import os sys.path.append(os.path.join(os.path.dirname(os.curdir))) -from greyatomlib.pandas_guided_project.q06_sub_total.build import q06_sub_total +from q06_sub_total.build import q06_sub_total path1 = 'data/excel-comp-data.xlsx' path2 = 'data/scraped.csv' def q07_symbols(path1,path2): - "write your solution here" + df = q06_sub_total(path1,path2) + df1 = df.applymap(lambda x: str('$')+str(x)) + df2 = df1.applymap(lambda x: str(x[0:4])+str(',')+str(x[4:])) + return df2 +#q07_symbols(path1,path2) -#print(q07_symbols(path1,path2)) +#print(q07_symbols(path1,path2)) diff --git a/q07_symbols/tests/__pycache__/__init__.cpython-36.pyc b/q07_symbols/tests/__pycache__/__init__.cpython-36.pyc index f854b4a..da09267 100644 Binary files a/q07_symbols/tests/__pycache__/__init__.cpython-36.pyc and b/q07_symbols/tests/__pycache__/__init__.cpython-36.pyc differ diff --git a/q07_symbols/tests/__pycache__/test.cpython-36.pyc b/q07_symbols/tests/__pycache__/test.cpython-36.pyc index 1a8a9c3..0f7539f 100644 Binary files a/q07_symbols/tests/__pycache__/test.cpython-36.pyc and b/q07_symbols/tests/__pycache__/test.cpython-36.pyc differ diff --git a/q08_append_subtotals/__pycache__/__init__.cpython-36.pyc b/q08_append_subtotals/__pycache__/__init__.cpython-36.pyc index df1c3a2..145f667 100644 Binary files a/q08_append_subtotals/__pycache__/__init__.cpython-36.pyc and b/q08_append_subtotals/__pycache__/__init__.cpython-36.pyc differ diff --git a/q08_append_subtotals/__pycache__/build.cpython-36.pyc b/q08_append_subtotals/__pycache__/build.cpython-36.pyc index d03d4af..d23b5b1 100644 Binary files a/q08_append_subtotals/__pycache__/build.cpython-36.pyc and b/q08_append_subtotals/__pycache__/build.cpython-36.pyc differ diff --git a/q08_append_subtotals/build.py b/q08_append_subtotals/build.py index 96e2f9e..4f632a5 100644 --- a/q08_append_subtotals/build.py +++ b/q08_append_subtotals/build.py @@ -1,15 +1,38 @@ import pandas as pd import numpy as np import sys,os -#sys.path.append(os.path.join(os.path.dirname(os.curdir))) -from greyatomlib.pandas_guided_project.q06_sub_total.build import q06_sub_total -from greyatomlib.pandas_guided_project.q07_symbols.build import q07_symbols +sys.path.append(os.path.join(os.path.dirname(os.curdir))) +from q06_sub_total.build import q06_sub_total +from q07_symbols.build import q07_symbols path1 = 'data/excel-comp-data.xlsx' path2 = 'data/scraped.csv' -def q08_append_subtotals(path1,path2): - "write your solution here" +def comma(x): + if len(str(x)) == 6: + x = str(x) + return str('$')+str(x[0:3])+str(',')+str(x[3:]) + + elif len(str(x)) == 5: + x = str(x) + return str('$')+str(x[0:2])+str(',')+str(x[2:]) + elif len(str(x)) == 7: + x = str(x) + return str('$')+str(x[0])+str(',')+str(x[1:4])+str(',')+str(x[4:]) + +def q08_append_subtotals(path1,path2): + df = q06_sub_total(path1,path2) + jan = df['Jan'].sum() + feb = df['Feb'].sum() + mar = df['Mar'].sum() + t = df['total'].sum() + a = df['account'].sum() + temp = pd.DataFrame({'Jan':[jan],'Feb':[feb], 'Mar':[mar], 'account':[a], 'total':[t]}) + df2 = df.append(temp,ignore_index=True) + dfy = df2.applymap(comma) + dfy.drop('account', axis=1, inplace=True) + return dfy +#q08_append_subtotals(path1,path2) diff --git a/q08_append_subtotals/tests/__pycache__/__init__.cpython-36.pyc b/q08_append_subtotals/tests/__pycache__/__init__.cpython-36.pyc index 21f4cd0..af117d3 100644 Binary files a/q08_append_subtotals/tests/__pycache__/__init__.cpython-36.pyc and b/q08_append_subtotals/tests/__pycache__/__init__.cpython-36.pyc differ diff --git a/q08_append_subtotals/tests/__pycache__/tests.cpython-36.pyc b/q08_append_subtotals/tests/__pycache__/tests.cpython-36.pyc index da1ab93..cbde8f4 100644 Binary files a/q08_append_subtotals/tests/__pycache__/tests.cpython-36.pyc and b/q08_append_subtotals/tests/__pycache__/tests.cpython-36.pyc differ diff --git a/q09_pie_chart_jan/__pycache__/__init__.cpython-36.pyc b/q09_pie_chart_jan/__pycache__/__init__.cpython-36.pyc index a0e3add..b87e1bd 100644 Binary files a/q09_pie_chart_jan/__pycache__/__init__.cpython-36.pyc and b/q09_pie_chart_jan/__pycache__/__init__.cpython-36.pyc differ diff --git a/q09_pie_chart_jan/__pycache__/build.cpython-36.pyc b/q09_pie_chart_jan/__pycache__/build.cpython-36.pyc index 25a6c03..beb6108 100644 Binary files a/q09_pie_chart_jan/__pycache__/build.cpython-36.pyc and b/q09_pie_chart_jan/__pycache__/build.cpython-36.pyc differ diff --git a/q09_pie_chart_jan/build.py b/q09_pie_chart_jan/build.py index 6483bc6..023c58a 100644 --- a/q09_pie_chart_jan/build.py +++ b/q09_pie_chart_jan/build.py @@ -3,13 +3,12 @@ from sklearn.model_selection import train_test_split import sys,os sys.path.append(os.path.join(os.path.dirname(os.curdir))) -from greyatomlib.pandas_guided_project.q06_sub_total.build import q06_sub_total +from q06_sub_total.build import q06_sub_total +import matplotlib +matplotlib.use('Agg') import matplotlib.pyplot as plt -plt.switch_backend('agg') def q09_pie_chart_jan(path1,path2): - - "write your solution here" - - - + df = q06_sub_total(path1,path2) + df.plot(x='Jan', kind='pie', subplots='True') + plt.show() diff --git a/q09_pie_chart_jan/tests/__pycache__/__init__.cpython-36.pyc b/q09_pie_chart_jan/tests/__pycache__/__init__.cpython-36.pyc index 07ab367..3e1bf5a 100644 Binary files a/q09_pie_chart_jan/tests/__pycache__/__init__.cpython-36.pyc and b/q09_pie_chart_jan/tests/__pycache__/__init__.cpython-36.pyc differ diff --git a/q09_pie_chart_jan/tests/__pycache__/tests.cpython-36.pyc b/q09_pie_chart_jan/tests/__pycache__/tests.cpython-36.pyc index b3b93c2..7776ca1 100644 Binary files a/q09_pie_chart_jan/tests/__pycache__/tests.cpython-36.pyc and b/q09_pie_chart_jan/tests/__pycache__/tests.cpython-36.pyc differ diff --git a/q10_total/__pycache__/__init__.cpython-36.pyc b/q10_total/__pycache__/__init__.cpython-36.pyc index 060775d..1f7d123 100644 Binary files a/q10_total/__pycache__/__init__.cpython-36.pyc and b/q10_total/__pycache__/__init__.cpython-36.pyc differ diff --git a/q10_total/__pycache__/build.cpython-36.pyc b/q10_total/__pycache__/build.cpython-36.pyc index 3ab214f..2562fb9 100644 Binary files a/q10_total/__pycache__/build.cpython-36.pyc and b/q10_total/__pycache__/build.cpython-36.pyc differ diff --git a/q10_total/build.py b/q10_total/build.py index 11f03c5..574cab8 100644 --- a/q10_total/build.py +++ b/q10_total/build.py @@ -3,12 +3,12 @@ from sklearn.model_selection import train_test_split import sys,os sys.path.append(os.path.join(os.path.dirname(os.curdir))) -from greyatomlib.pandas_guided_project.q06_sub_total.build import q06_sub_total +from q06_sub_total.build import q06_sub_total +import matplotlib +matplotlib.use('Agg') import matplotlib.pyplot as plt -plt.switch_backend('agg') def q10_total(path1,path2): - - "write your solution here" - - + df = q06_sub_total(path1,path2) + df.plot(x='Jan', kind='pie', subplots='True') + plt.show() diff --git a/q10_total/tests/__pycache__/__init__.cpython-36.pyc b/q10_total/tests/__pycache__/__init__.cpython-36.pyc index e3f7237..ebef182 100644 Binary files a/q10_total/tests/__pycache__/__init__.cpython-36.pyc and b/q10_total/tests/__pycache__/__init__.cpython-36.pyc differ diff --git a/q10_total/tests/__pycache__/tests.cpython-36.pyc b/q10_total/tests/__pycache__/tests.cpython-36.pyc index 4d3b233..d2fa2d7 100644 Binary files a/q10_total/tests/__pycache__/tests.cpython-36.pyc and b/q10_total/tests/__pycache__/tests.cpython-36.pyc differ