Hello everyone, I hope you are having a wonderful day. Here is my second guided project. Thank you for any suggestions.
HN Post Response.ipynb (7.7 KB)
Hello everyone, I hope you are having a wonderful day. Here is my second guided project. Thank you for any suggestions.
HN Post Response.ipynb (7.7 KB)
row_list.append(created_at)
row_list.append(num_comments)
result_list.append(row_list)
this can be shortened to
result_list.append([created_at, num_comments])
Thanks shahru. I would like to write concise code and I appreciate any tips.
I made the edit you suggested and then reposted the notebook and made a nbviewer.org link for the notebook. Thanks again to Elena_Kosourova for sharing the link on how to do that.