Search Results

19
votes

How to call external command in Python

I'd recommend using the subprocess module instead of os.system because it does shell escaping for you and is therefore much safer: …
4
votes

Why does Python pep-8 strongly recommend spaces over tabs for indentation?

The most significant advantage I can tell of spaces over tabs is that a lot of programmers and projects use a set number of columns for the source code, and if someone commits a change with their t …