36-650-Fall-2020 / fp-unit-test-assignment-YixuanLuo98

fp-unit-test-assignment-YixuanLuo98 created by GitHub Classroom
1 stars 0 forks source link

file naming #3

Open alexazhu opened 3 years ago

alexazhu commented 3 years ago

It is my personal preference but it might be helpful to name your Python file/module by its main purpose, such as data_reader.py; data_displayer.py; data_catcher.py; in this way, other programmer or user can quickly find the source code relative to the functions they are looking for. Thank you!

YixuanLuo98 commented 3 years ago

Yes! Apparently, it was related to the last issue too. My logic was a bit too simple only for myself to read and catch up. I now realized that my way of organizing files can be a bit messy for those who read my code. As suggested, one way to fix this that I would like to propose is to add in reader and processor and put all the related functions under the categories respectively. Thanks!!