Posts by Fernando Macedo • 251 points
3 posts
-
8
votes3
answers12860
viewsA: How to fill left zeros in Python?
You can use the method @Wallacemaxters demonstrated: >>> print '%05d' % 4 '00004' Another possibility is to use the method zfill class str, the str.zfill, but for this you will need the…
-
1
votes5
answers8633
viewsA: What is the most complete way to install python on Windows?
In the main implementation of the Python language, Cpython, also known as "reference implementation", the interpreter is written in... guess what?! C. Cpython is also famous for allowing easy access…
-
3
votes1
answer236
viewsA: Error trying to install yowsup: Unable to find vcvarsall.bat
If Visual Studio is already installed, make sure it is accessible by command line. Open a terminal and type: vcvarsall.bat If the command message is not found, search your computer for this file and…