Search Results

7
votes

What are the important language features (idioms) of Python to learn early on

This page covers all the major python idioms: http://python.net/~goodger/projects/pycon/2007/idiomatic …
1
vote

Online compilers/runtime for Java, C++, Python and ObjC?

This works for java: http://www.zamples.com/JspExplorer/index.jsp …
3
votes

Get the diff of a two MSWord doc files and output to html

It looks like if you have word and win32com installed it is relatively easy to get the text: import win32com.client app = win32com.client.Dispatch('Word.Application') doc = app.Docu …
0
votes

Run a linux system command as a superuser, using a python script

import os os.popen("sudo -S /etc/init.d/postifx reload", 'w').write("yourpassword") This of course is almost always not a good idea as the password is in plain text. …
17
votes

join list of lists in python

import itertools a = [["a","b"], ["c"]] print list(itertools.chain(*a)) …
5
votes

Python: Date Ordinal Output?

Here's a more general solution: def ordinal(n): if 10 <= n % 100 < 20: return str(n) + 'th' else: return str(n) + {1 : 'st', 2 : 'nd', 3 : 'rd'}.get(n …