Interview with Guido van Rossum the creator of Python

SUBSCRIBE for more speakers ► http://is.gd/OxfordUnion Oxford Union on Facebook: https://www.facebook.com/theoxfordunion Oxford Union on Twitter: @OxfordUnio… Read more

Similar

The fastest way to flatten a list in Python

In my latest book, Fast Python, I bust a lot of speed myths in Python. Some of the most basic advice people give about optimizing Python code is wrong, likely because no one ever bothered to test it. In this book, I go back to the basics and verify (or bu... (more…)

Read more »

Unravelling Attribute Access in Python

I wonder how many people realize that Python has a lot of syntactic sugar? I'm not claiming it's like a Lisp-based language where the syntax is as bare bones as possible (although the Lisp comparison is not entirely unfounded), but much of Python's syntax... (more…)

Read more »

How to package Python applications for Linux

One way to make Python applications installable on Debian-based operating systems (such as Debian or Elementary OS) is by using the dh_virtualenv tool. It builds a .deb package that wraps a Python virtual environment around an application and deploys it u... (more…)

Read more »