↧
Answer by Graipher for Python Day Finder
If you are already reinventing the wheel regarding datetime, I would take their interface as a bit of an example. I would propose to write a Date class, with the ability to parse your input format.For...
View ArticleAnswer by Richard Neumann for Python Day Finder
Your code looks quite good. You mostly stick to PEP8 though you might want to implement a distance of two empty lines in-between functions on module-level.Regarding code optimization you may want to...
View ArticlePython Day Finder
I have made a Python program to find the day of the week of an inputted date. I did not want to use the time or datetime module, like in this answer, as I found that a bit too easy. (I like to...
View Article