Showing posts with label Python. Show all posts
Showing posts with label Python. Show all posts
Sunday, October 28, 2018
Pass environment variables to pythons using sudo while invoking it
Create simple webserver in python
Tuesday, September 25, 2012
Print Hex numbers with leading zeros in python
To print Hex numbers with leading zeros in python, I have used following code,
for i in range(0,32):
print '0x%0.8X' %(1<<);
Subscribe to:
Posts (Atom)