Search Results

1
vote

In Python how do I sort a list of dictionaries by values of the dictionary?

import operator a_list_of_dicts.sort(key=operator.itemgetter('name')) 'key' is used to sort by an arbitrary value and 'itemgetter' sets that value to each item's 'name' at …
0
votes

How do you load an embedded icon from an exe file with PyWin32?

You should set the icon ID to something other than 0: 'icon_resources': [(42, 'my_icon.ico')] Windows resource IDs must be between 1 and 32767. …
1
vote

How do you load an embedded icon from an exe file with PyWin32?

Well, well... I installed py2exe and I think it's a bug. In py2exe_util.c they should init rt_icon_id to 1 instead of 0. The way it is now, it's impossible to …
5
votes

What is the difference between range and xrange?

xrange only stores the range params and generates the numbers on demand. However the C implementation of Python currently restricts its args to C longs: xrange(2**3 …
0
votes

Is there any difference between “string” and ‘string’ in Python?

Single and double quoted strings in Python are identical. The only difference is that single-quoted strings can contain unescaped double quote characters, and vice versa. For example: …
5
votes

How do you get a directory listing sorted by creation date in python?

Here's my version: def getfiles(dirpath): a = [s for s in os.listdir(dirpath) if os.path.isfile(os.path.join(dirpath, s))] a.sort(key=lambda s: os.path.getmtime(os. …
4
votes

Python - How do I convert “an OS-level handle to an open file” to a file object?

You forgot to specify the open mode ('w') in fdopen(). The default is 'r', causing the write() call to fail. I think mkstemp() creates the file for reading only. Calling fdopen with 'w' pro …
7
votes

Detecting Mouse clicks in windows using python

The only way to detect mouse events outside your program is to install a Windows hook using SetWindowsHookEx …
12
votes

How do I split a mult-line string into multiple lines?

Like the others said: inputString.split('\n') # --> ['Line 1', 'Line 2', 'Line 3'] This is identical to the above, but the string module's functions are deprec …
3
votes

How do I abort the execution of a Python script?

You can either use: import sys sys.exit(...) or: raise SystemExit(...) The optional parameter can be an exit code or an error mes …
0
votes

Does anyone know where there is a recipe for serializing data and preserving its order in the output?

The Python dict is an unordered container. If you need to preserve the order of the entries, you should consider using a list of 2-tuples. Another option would be to keep an extra, ordered …
2
votes

How can you determine a point is between two other points on a line segment?

Using a more geometric approach, calculate the following distances: ab = sqrt((a.x-b.x)**2 + (a.y-b.y)**2) ac = sqrt((a.x-c.x)**2 + (a.y-c.y)**2) bc = sqrt((b.x-c.x)**2 + (b.y-c.y)* …
10
votes

End-line characters from lines read from text file, using Python

The idiomatic way to do this in Python is to use rstrip('\n'): for line in open('myfile.txt'): # opened in text-mode; all EOLs are converted to '\n' l …
10
votes

Python idiom to return first item or None

The best way is this: a = get_list() return a[0] if a else None You could also do it in one line, but it's much harder for the programmer to read: …
0
votes

python file size

Tracking the size yourself will be fine for your case. A different way would be to flush the file buffers just before you check the size: f2.write(line) f2.flush() # <-- buffers …