⚠️ LAST CALL ALERT: Hoy es el último día para apuntarse en el Django Girls Sevilla.📍
Aprende a crear tu propia página web en el mejor ambiente. 🤩 @DjangogirlsSVQ
¡No te lo puedes perder!👉🏼 bit.ly/2KKkRoh
Good news: #Python 3 adoption continues to rise.
Bad news: A lot of Python 2 users don't seem to know that the end is near
(14 months left until Python 2 becomes completely unsupported).
Last month, 39.3% of downloads from PyPI were for Python 3 (excluding downloads where we don’t know what Python version they were for, like Mirrors, etc).
A short Python code snippet meant as a teaching tool. A Python Trick either teaches an aspect of Python with a simple illustration, or serves as a motivating example to dig deeper and develop an intuitive understanding. realpython.com/python-tricks…
#Python programming principle of the day: "The Law of Demeter" helps achieve looser coupling between classes.
Generally, objects should avoid invoking methods on objects returned by another method.
In order words, avoid multiple dots: a.b().c()
ccs.neu.edu/research/demeter…