Constructive feedback
Basics.ipynb (78.9 KB)
Click here to view the jupyter notebook file in a new tab
Constructive feedback
Basics.ipynb (78.9 KB)
Click here to view the jupyter notebook file in a new tab
Hey there, congratulations on your first project! You are doing great!
Here are my suggestions:
min_year = min(data, key=lambda x: x[0])[0]
max_year = max(data, key=lambda x: x[0])[0]
print(max_year)
attempts_per_year =
for year in years:
attempts_per_year.append([year, 0])
print(attempts_per_year)
Hi @nketsiahjoshua7 good project
I suggest adding descriptions about your project on the noteboook, also some discussion about your findings would help your project to stand out.