Eigenvectors and EigenvaluesWhat are Eigenvectors and Eigenvalues. Core concept explained with diagrams, graphs and examplesFeb 1, 2023·8 min read·125
Fetch the last day of the month in PythonPython does not have a simple method to fetch the last day of the month. Instead, you need to use the monthrange() method from the calendar module as shown here. Not an inconvenience really.. 🤷♂️ >>> import calendar >>> calendar.monthrange(2022, 2)...Jul 11, 2022·1 min read·29
Python comprehensionsPrettify your code using comprehensions. Beautiful is better than ugly.Jul 8, 2022·6 min read·71
Python groupby() pitfallsSome conditions to keep in my mind while using Python's groupby method from the itertools libJul 8, 2022·3 min read·123