User ΤΖΩΤΖΙΟΥ - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T03:43:45Zhttp://stackoverflow.com/feeds/user/6899http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1947030/ternary-operator-python/1948943#19489431Answer by ΤΖΩΤΖΙΟΥ for Ternary Operator - PythonΤΖΩΤΖΙΟΥ2009-12-22T20:32:04Z2009-12-22T20:45:36Z<h3>indexing into a list</h3>
<p>The use of</p>
<pre><code>[expression_when_false, expression_when_true][condition] # or
(expression_when_false, expression_when_true)[condition]
</code></pre>
<p>takes advantage of the fact that in Python True equals (but isn't!) 1 and False equals (but isn't!) 0. The expression above constructs a list of two elements, and uses the result of <em>condition</em> to index in the list and return only one expression. The drawback of this method is that both expressions are evaluated.</p>
<h3>and-or shortcuts</h3>
<p>Since the creation of Python, there was a form of this operation:</p>
<pre><code>condition and expression_when_true or expression_when_false
</code></pre>
<p>This takes a shortcut and evaluates only one expression, but has a bug-prone drawback: the *expression_when_true* <strong>must not</strong> evaluate to a non-true value, otherwise the result is *expression_when_false*. <code>and</code> and <code>or</code> are "short-circuiting" in Python, and the following rules apply:</p>
<pre><code>a and b #→ a if a is false, else b
a or b #→ a if a is true, else b
</code></pre>
<p>If <em>condition</em> is false, then *expression_when_true* is never evaluated and the result is *expression_when_false*. OTOH, if <em>condition</em> is true, then the result is the result of (*expression_when_true* or *expression_when_false*); consult the table above.</p>
<h3>ternary conditional operator</h3>
<p>Of course, since Python 2.5, there is a ternary conditional operator:</p>
<pre><code>expression_when_true if condition else expression_when_false
</code></pre>
<p>The strange (if you are accustomed to the C-like ternary conditional operator) order of the operands is attributed <a href="http://www.python.org/doc/2.5/whatsnew/pep-308.html" rel="nofollow">to many things</a>; the general intention is that <em>condition</em> should be true most of the time, so that the most common output comes first and is most visible.</p>
http://stackoverflow.com/questions/1895538/for-loop-os-listdir-not-working-correctly/1902386#19023860Answer by ΤΖΩΤΖΙΟΥ for For Loop, os.listdir() not working correctlyΤΖΩΤΖΙΟΥ2009-12-14T17:48:01Z2009-12-14T17:48:01Z<p>There's a context manager that you can use to temporarily store the cwd in that question:</p>
<p><a href="http://stackoverflow.com/questions/169070/python-how-do-i-write-a-decorator-that-restores-the-cwd">How do I write a decorator that restores the cwd?</a></p>
http://stackoverflow.com/questions/1780763/getting-every-odd-variable-in-a-list/1900019#19000190Answer by ΤΖΩΤΖΙΟΥ for Getting every odd variable in a list?ΤΖΩΤΖΙΟΥ2009-12-14T10:05:58Z2009-12-14T10:05:58Z<p>To have a range of odd/even numbers up to and possibly including a number n, you can:</p>
<pre><code>def odd_numbers(n):
return range(1, n+1, 2)
def even_numbers(n):
return range(0, n+1, 2)
</code></pre>
<p>If you want a generic algorithm that will take the items with odd <em>indexes</em> from a sequence, you can do the following:</p>
<pre><code>import itertools
def odd_indexes(sequence):
return itertools.islice(sequence, 1, None, 2)
def even_indexes(sequence):
return itertools.islice(sequence, 0, None, 2)
</code></pre>
http://stackoverflow.com/questions/1845078/what-regular-expression-can-never-match/1882970#18829700Answer by ΤΖΩΤΖΙΟΥ for What regular expression can never match?ΤΖΩΤΖΙΟΥ2009-12-10T18:18:38Z2009-12-10T18:18:38Z<p>I believe that</p>
<pre><code>\Z RE FAILS! \A
</code></pre>
<p>covers even the cases where the regular expression includes flags like MULTILINE, DOTALL etc.</p>
<pre><code>>>> import re
>>> x=re.compile(r"\Z RE FAILS! \A")
>>> x.match('')
>>> x.match(' RE FAILS! ')
>>>
</code></pre>
<p>I believe (but I haven't benchmarked it) that whatever the length (> 0) of the string between <code>\Z</code> and <code>\A</code>, the time-to-failure should be constant.</p>
http://stackoverflow.com/questions/1876587/optimal-way-to-access-a-value-from-the-last-iteration-in-a-loop/1877915#18779151Answer by ΤΖΩΤΖΙΟΥ for Optimal way to access a value from the last iteration in a loopΤΖΩΤΖΙΟΥ2009-12-10T00:32:20Z2009-12-10T00:32:20Z<p>Guido's time machine to the rescue!</p>
<p>From the <a href="http://docs.python.org/library/itertools.html#recipes" rel="nofollow">itertools recipes</a> page:</p>
<pre><code>import itertools
def pairwise(iterable):
"s -> (s0,s1), (s1,s2), (s2, s3), ..."
a, b = itertools.tee(iterable)
next(b, None)
return itertools.izip(a, b)
</code></pre>
<p>This should be the most appropriate method (consider the iterable was <code>(random.randint(100) for x in xrange(1000))</code>; here <code>iter(iterable); next(iterable)</code> as a secondary iterator might not provide correct functionality.</p>
<p>Use it in your loop as:</p>
<pre><code>for prev_item, item in pairwise(iterable):
…
</code></pre>
http://stackoverflow.com/questions/1873575/how-could-i-get-a-frame-with-a-scrollbar-in-pythons-tkinter/1877862#18778621Answer by ΤΖΩΤΖΙΟΥ for How could I get a Frame with a scrollbar in Python's Tkinter?ΤΖΩΤΖΙΟΥ2009-12-10T00:14:59Z2009-12-10T00:14:59Z<p>If you can use Tix, there is the ScrolledWindow widget which has a <code>window</code> Frame and one or two Scrollbar widgets:</p>
<pre><code>import Tix as tk
r= tk.Tk()
r.title("test scrolled window")
sw= tk.ScrolledWindow(r, scrollbar=tk.Y) # just the vertical scrollbar
sw.pack(fill=tk.BOTH, expand=1)
for i in xrange(10):
e= tk.Entry(sw.window)
e.pack()
r.mainloop()
</code></pre>
<p>Change the size of the root window. You will want to add code to the focus_get event of the Entry widgets to scroll the ScrolledWindow when tabbing through the keyboard.</p>
<p>Otherwise, you will have to use a Canvas widget (you can add Label, Entry and Text subwidgets) and write a lot more code yourself to implement your required functionality.</p>
http://stackoverflow.com/questions/1830370/why-ghost-process-appears-after-kill-9/1853165#18531650Answer by ΤΖΩΤΖΙΟΥ for why Ghost Process appears after kill -9ΤΖΩΤΖΙΟΥ2009-12-05T19:24:41Z2009-12-05T19:24:41Z<p>Zombie processes are actually just an entry in the process table. They do not run, they don't consume memory; the entry just stays because the parent hasn't checked their exit code.
You can either do a double fork as Gonzalo suggests, or you can filter out all ps lines with a Z in the S column.</p>
http://stackoverflow.com/questions/1832893/python-regex-matching-unicode-properties/1852463#18524631Answer by ΤΖΩΤΖΙΟΥ for Python regex matching Unicode propertiesΤΖΩΤΖΙΟΥ2009-12-05T15:24:31Z2009-12-05T15:24:31Z<p>Note that while <code>\p{Ll}</code> has no equivalent in Python regular expressions, <code>\p{Zs}</code> should be covered by <code>'(?u)\s'</code>.
The <code>(?u)</code>, as the docs say, “Make \w, \W, \b, \B, \d, \D, \s and \S dependent on the Unicode character properties database.” and <code>\s</code> means any spacing character.</p>
http://stackoverflow.com/questions/1841949/python-gtk-module-opens-display-on-import/1846792#18467920Answer by ΤΖΩΤΖΙΟΥ for python gtk module opens display on importΤΖΩΤΖΙΟΥ2009-12-04T12:55:18Z2009-12-04T12:55:18Z<p>If the remote machine has vncserver installed, you can have a dummy server running and connect to that. Sample instructions:</p>
<pre><code>remotemachine $ vncserver -depth 16 -geometry 800x600 :7
New 'X' desktop is remotemachine:7
Starting applications specified in /home/user/.vnc/xstartup
Log file is /home/user/.vnc/userve:7.log
remotemachine $ DISPLAY=:7 python -c 'import myscript.py'
…
remotemachine $ vncserver -kill :7
Killing Xtightvnc process ID 32058
</code></pre>
http://stackoverflow.com/questions/63776/bit-reversal-of-an-integer-ignoring-integer-size-and-endianness3Bit reversal of an integer, ignoring integer size and endiannessΤΖΩΤΖΙΟΥ2008-09-15T15:10:49Z2009-12-04T06:31:13Z
<p>Given an integer typedef:</p>
<pre><code>typedef unsigned int TYPE;
</code></pre>
<p>or</p>
<pre><code>typedef unsigned long TYPE;
</code></pre>
<p>I have the following code to reverse the bits of an integer:</p>
<pre><code>TYPE max_bit= (TYPE)-1;
void reverse_int_setup()
{
TYPE bits= (TYPE)max_bit;
while (bits <<= 1)
max_bit= bits;
}
TYPE reverse_int(TYPE arg)
{
TYPE bit_setter= 1, bit_tester= max_bit, result= 0;
for (result= 0; bit_tester; bit_tester>>= 1, bit_setter<<= 1)
if (arg & bit_tester)
result|= bit_setter;
return result;
}
</code></pre>
<p>One just needs first to run reverse_int_setup(), which stores an integer with the highest bit turned on, then any call to reverse_int(<em>arg</em>) returns <em>arg</em> with its bits reversed (to be used as a key to a binary tree, taken from an increasing counter, but that's more or less irrelevant).</p>
<p>Is there a platform-agnostic way to have in compile-time the correct value for max_int after the call to reverse_int_setup(); Otherwise, is there an algorithm you consider <em>better/leaner</em> than the one I have for reverse_int()?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1834825/how-do-ldexp-and-frexp-work-in-python/1836897#18368971Answer by ΤΖΩΤΖΙΟΥ for How do ldexp and frexp work in python?ΤΖΩΤΖΙΟΥ2009-12-03T00:31:38Z2009-12-03T00:31:38Z<p>This is a question you can easily answer yourself:</p>
<pre><code>$ python
>>> import math
>>> help(math.frexp)
Help on built-in function frexp in module math:
</code></pre>
<p>Notice the <em>built-in</em>. It's in C.</p>
<pre><code>>>> import urllib
>>> help(urllib.urlopen)
Help on function urlopen in module urllib:
</code></pre>
<p>No <em>built-in</em> here. It's in Python.</p>
http://stackoverflow.com/questions/1835787/what-is-the-range-of-values-a-float-can-have-in-python/1836341#18363411Answer by ΤΖΩΤΖΙΟΥ for What is the range of values a float can have in Python?ΤΖΩΤΖΙΟΥ2009-12-02T22:33:03Z2009-12-02T22:55:09Z<p>Just playing around; here is an algorithmic method to find the minimum and maximum positive float, hopefully in any python implementation where <code>float("+inf")</code> is acceptable:</p>
<pre><code>def find_float_limits():
"""Return a tuple of min, max positive numbers
representable by the platform's float"""
# first, make sure a float's a float
if 1.0/10*10 == 10.0:
raise RuntimeError("Your platform's floats aren't")
minimum= maximum= 1.0
infinity= float("+inf")
# first find minimum
last_minimum= 2*minimum
while last_minimum > minimum > 0:
last_minimum= minimum
minimum*= 0.5
# now find maximum
operands= []
while maximum < infinity:
operands.append(maximum)
try:
maximum*= 2
except OverflowError:
break
last_maximum= maximum= 0
while operands and maximum < infinity:
last_maximum= maximum
maximum+= operands.pop()
return last_minimum, last_maximum
if __name__ == "__main__":
print (find_float_limits()) # python 2 and 3 friendly
</code></pre>
<p>In my case,</p>
<pre><code>$ python so1835787.py
(4.9406564584124654e-324, 1.7976931348623157e+308)
</code></pre>
<p>so denormals are used.</p>
http://stackoverflow.com/questions/1835809/problem-with-variable-scoping-in-python/1836163#18361630Answer by ΤΖΩΤΖΙΟΥ for Problem with variable scoping in PythonΤΖΩΤΖΙΟΥ2009-12-02T22:04:27Z2009-12-02T22:04:27Z<p>In cases where you have a <code>try…except</code> suite and you want code to run iff <em>no</em> exceptions have occurred, it's a good habit to write the code as follows:</p>
<pre><code>try:
# code that could fail
except Exception1:
# handle exception1
except Exception2:
# handle exception2
else: # the code-that-could-fail didn't
# here runs the code that depends
# on the success of the try clause
</code></pre>
http://stackoverflow.com/questions/1835756/using-try-vs-if-in-python/1836111#18361112Answer by ΤΖΩΤΖΙΟΥ for Using try vs if in pythonΤΖΩΤΖΙΟΥ2009-12-02T21:57:37Z2009-12-02T21:57:37Z<p>Please ignore my solution if the code I provide is not obvious at first glance and you have to read the explanation after the code sample.</p>
<p>Can I assume that the "no value returned" means the return value is None? If yes, or if the "no value" is False boolean-wise, you can do the following, since your code essentially treats "no value" as "do not iterate":</p>
<pre><code>for r in function() or ():
# process items
</code></pre>
<p>If <code>function()</code> returns something that's not True, you iterate over the empty tuple, i.e. you don't run any iterations. This is essentially LBYL.</p>
http://stackoverflow.com/questions/1821204/how-to-get-unicode-month-name-in-python/1822383#18223830Answer by ΤΖΩΤΖΙΟΥ for How to get unicode month name in Python?ΤΖΩΤΖΙΟΥ2009-11-30T21:03:47Z2009-11-30T21:03:47Z<p>What you need is:</p>
<pre><code>…
myencoding= locale.getpreferredencoding()
print repr(calendar.month_abbr[6].decode(myencoding))
…
</code></pre>
http://stackoverflow.com/questions/368805/python-unicodedecodeerror-am-i-misunderstanding-encode/370199#37019916Answer by ΤΖΩΤΖΙΟΥ for Python UnicodeDecodeError - Am I misunderstanding encode?ΤΖΩΤΖΙΟΥ2008-12-16T00:45:11Z2009-11-25T23:22:55Z<p>…there's a reason they're called "encodings"…</p>
<p>A little preamble: think of unicode as the norm, or the ideal state. Unicode is just a table of characters. №65 is latin capital A. №937 is greek capital omega. Just that.<br>
In order for a computer to store and-or manipulate Unicode, it has to <em>encode</em> it into bytes. The most straightforward <em>encoding</em> of Unicode is UCS-4; every character occupies 4 bytes, and all ~1000000 characters are available. The 4 bytes contain the number of the character in the Unicode tables as a 4-byte integer. Another very useful encoding is UTF-8, which can encode any Unicode character with one to four bytes. But there also are some limited encodings, like "latin1", which include a very limited range of characters, mostly used by Western countries. Such <em>encodings</em> use only one byte per character.</p>
<p>Basically, Unicode can be <em>encoded</em> with many encodings, and encoded strings can be <em>decoded</em> to Unicode. The thing is, Unicode came quite late, so all of us that grew up using an 8-bit <em>character set</em> learned too late that all this time we worked with <em>encoded</em> strings. The encoding could be ISO8859-1, or windows CP437, or CP850, or, or, or, depending on our system default.</p>
<p>So when, in your source code, you enter the string "add “Monitoring“ to list" (and I think you wanted the string "add “Monitoring” to list", note the second quote), you actually are using a string already <em>encoded</em> according to your system's default codepage (by the byte \x93 I assume you use Windows codepage 1252, “Western”). If you want to get Unicode from that, you need to <em>decode</em> the string from the "cp1252" encoding.</p>
<p>So, what you meant to do, was:</p>
<pre><code>"add \x93Monitoring\x94 to list".decode("cp1252", "ignore")
</code></pre>
<p>It's unfortunate that Python 2.x includes an <code>.encode</code> method for strings too; this is a convenience function for "special" encodings, like the "zip" or "rot13" or "base64" ones, which have nothing to do with Unicode.</p>
<p>Anyway, all you have to remember for your to-and-fro Unicode conversions is:</p>
<ul>
<li>a Unicode string gets <em>encoded</em> to a Python 2.x string (actually, a sequence of bytes)</li>
<li>a Python 2.x string gets <em>decoded</em> to a Unicode string</li>
</ul>
<p>In both cases, you need to specify the <em>encoding</em> that will be used.</p>
<p>I'm not very clear, I'm sleepy, but I sure hope I help.</p>
<p>PS A humorous side note: Mayans didn't have Unicode; ancient Romans, ancient Greeks, ancient Egyptians didn't too. They all had their own "encodings", and had little to no respect for other cultures. All these civilizations crumbled to dust. Think about it people! Make your apps Unicode-aware, for the good of mankind. :)</p>
<p>PS2 Please don't spoil the previous message by saying "But the Chinese…". If you feel inclined or obligated to do so, though, delay it by thinking that the Unicode BMP is populated mostly by chinese ideograms, ergo Chinese is the basis of Unicode. I can go on inventing outrageous lies, as long as people develop Unicode-aware applications. Cheers!</p>
http://stackoverflow.com/questions/1232204/uniscribe-kerning/1773983#17739830Answer by ΤΖΩΤΖΙΟΥ for Uniscribe KerningΤΖΩΤΖΙΟΥ2009-11-21T00:06:39Z2009-11-21T00:06:39Z<p>If you're running on Windows XP, I believe you have to have enabled the following in Control Panel's Regional Options:</p>
<ul>
<li>Install files for complex scripts and right-to-left languages (including Thai)</li>
<li>Install files for East Asian Languages</li>
</ul>
<p>for Uniscribe kerning to work.</p>
http://stackoverflow.com/questions/1690605/reliable-and-efficient-key-value-database-for-linux/1759980#17599801Answer by ΤΖΩΤΖΙΟΥ for Reliable and efficient key--value database for Linux?ΤΖΩΤΖΙΟΥ2009-11-18T23:56:55Z2009-11-20T19:17:38Z<p>Another suggestion is <a href="http://tdb.samba.org/" rel="nofollow">TDB</a> (a part of the Samba project). I've used it through the <a href="http://pypi.python.org/pypi/tdb/1.0" rel="nofollow">tdb</a> module, however I can't say I've tested its reliability on crashes; the projects I used it in didn't have such requirements, and I can't find relevant documentation.</p>
http://stackoverflow.com/questions/774316/python-difflib-highlighting-differences-inline/788780#7887806Answer by ΤΖΩΤΖΙΟΥ for Python difflib: highlighting differences inline?ΤΖΩΤΖΙΟΥ2009-04-25T12:05:12Z2009-11-18T20:52:52Z<p>For your simple example:</p>
<pre><code>import difflib
def show_diff(seqm):
"""Unify operations between two compared strings
seqm is a difflib.SequenceMatcher instance whose a & b are strings"""
output= []
for opcode, a0, a1, b0, b1 in seqm.get_opcodes():
if opcode == 'equal':
output.append(seqm.a[a0:a1])
elif opcode == 'insert':
output.append("<ins>" + seqm.b[b0:b1] + "</ins>")
elif opcode == 'delete':
output.append("<del>" + seqm.a[a0:a1] + "</del>")
elif opcode == 'replace':
raise NotImplementedError, "what to do with 'replace' opcode?"
else:
raise RuntimeError, "unexpected opcode"
return ''.join(output)
>>> sm= difflib.SequenceMatcher(None, "lorem ipsum dolor sit amet", "lorem foo ipsum dolor amet")
>>> show_diff(sm)
'lorem<ins> foo</ins> ipsum dolor <del>sit </del>amet'
</code></pre>
<p>This works with strings. You should decide what to do with "replace" opcodes.</p>
http://stackoverflow.com/questions/1661621/finding-the-highest-key/1747244#17472440Answer by ΤΖΩΤΖΙΟΥ for Finding the highest keyΤΖΩΤΖΙΟΥ2009-11-17T07:54:14Z2009-11-17T07:54:14Z<pre><code>d= {5:3, 4:1, 12:2, 14:9}
</code></pre>
<p>To print the value associated with the largest key:</p>
<pre><code>print max(d.iteritems())[1]
</code></pre>
<p>To print the key associated with the largest value:</p>
<pre><code>import operator
print max(d.iteritems(), key=operator.itemgetter(1))[0]
</code></pre>
http://stackoverflow.com/questions/1728330/how-to-get-processs-grandparent-id/1732073#17320730Answer by ΤΖΩΤΖΙΟΥ for How to get process's grandparent idΤΖΩΤΖΙΟΥ2009-11-13T21:35:02Z2009-11-13T21:35:02Z<pre><code>from __future__ import with_statement
def pnid(pid=None, N=1):
"Get parent (if N==1), grandparent (if N==2), ... of pid (or self if not given)"
if pid is None:
pid= "self"
while N > 0:
filename= "/proc/%s/status" % pid
with open(filename, "r") as fp:
for line in fp:
if line.startswith("PPid:"):
_, _, pid= line.rpartition("\t")
pid= pid.rstrip() # drop the '\n' at end
break
else:
raise RuntimeError, "can't locate PPid line in %r" % filename
N-= 1
return int(pid) # let it fail through
>>> pnid()
26558
>>> import os
>>> os.getppid()
26558
>>> pnid(26558)
26556
>>> pnid(N=2)
26556
>>> pnid(N=3)
1
</code></pre>
http://stackoverflow.com/questions/1693088/what-is-the-use-of-pythons-basic-optimizations-mode-python-o/1698167#16981670Answer by ΤΖΩΤΖΙΟΥ for What is the use of Python's basic optimizations mode? (`python -O`)ΤΖΩΤΖΙΟΥ2009-11-08T22:35:40Z2009-11-08T22:35:40Z<p>Another use for the <code>-O</code> flag is that the value of the <code>__debug__</code> builtin variable is set to <code>False</code>.</p>
<p>So, basically, your code can have a lot of "debugging" paths like:</p>
<pre><code>if __debug__:
# output all your favourite debugging information
# and then more
</code></pre>
<p>which, when running under <code>-O</code>, won't even be included as bytecode in the <code>.pyo</code> file; a poor man's C-ish #ifdef.</p>
<p>Remember that docstrings are being dropped <em>only</em> when the flag is <code>-OO</code>.</p>
http://stackoverflow.com/questions/1662140/pythons-datetime-and-end-of-the-month/1663240#16632401Answer by ΤΖΩΤΖΙΟΥ for python's datetime and end of the monthΤΖΩΤΖΙΟΥ2009-11-02T19:41:05Z2009-11-02T22:37:57Z<pre><code>import datetime
def eom(dt):
sometime_next_month= dt.replace(day=1) + datetime.timedelta(days=31)
start_of_next_month= sometime_next_month.replace(day=1,hour=0,minute=0,second=0)
return start_of_next_month - datetime.timedelta(seconds=1)
>>> eom(datetime.datetime(1972, 2, 1, 23, 50, 50))
datetime.datetime(1972, 2, 29, 23, 59, 59)
>>> eom(datetime.datetime(1980, 12, 31))
datetime.datetime(1980, 12, 31, 23, 59, 59)
</code></pre>
http://stackoverflow.com/questions/1659659/how-to-write-a-memory-efficient-python-program/1660263#16602631Answer by ΤΖΩΤΖΙΟΥ for How to write a memory efficient Python program?ΤΖΩΤΖΙΟΥ2009-11-02T09:40:03Z2009-11-02T09:40:03Z<p>Like others have said, you need at least the following two changes:</p>
<ol>
<li><p>Do not create a huge list of integers with <code>range</code></p>
<pre><code># use xrange
for i in xrange(0, count):
# UNPACK FIXED LENGTH OF BINARY DATA HERE
yield (field1, field2, field3)
</code></pre></li>
<li><p>do not create a huge string as the full file body to be written at once</p>
<pre><code># use writelines
f = open(filename, 'w')
f.writelines((datum + os.linesep) for datum in data)
f.close()
</code></pre></li>
</ol>
<p>Even better, you could write the file as:</p>
<pre><code> items = GetData(url)
f = open(filename, 'w')
for item in items:
f.write(';'.join(item) + os.linesep)
f.close()
</code></pre>
http://stackoverflow.com/questions/312443/how-do-you-split-a-list-into-evenly-sized-chunks-in-python/312644#31264421Answer by ΤΖΩΤΖΙΟΥ for How do you split a list into evenly sized chunks in Python?ΤΖΩΤΖΙΟΥ2008-11-23T15:48:53Z2009-11-02T00:49:05Z<p>Directly from the Python documentation (recipes for itertools):</p>
<pre><code>from itertools import izip, chain, repeat
def grouper(n, iterable, padvalue=None):
"grouper(3, 'abcdefg', 'x') --> ('a','b','c'), ('d','e','f'), ('g','x','x')"
return izip(*[chain(iterable, repeat(padvalue, n-1))]*n)
</code></pre>
<p>An alternate take, as suggested by J.F.Sebastian:</p>
<pre><code>from itertools import izip_longest
def grouper(n, iterable, padvalue=None):
"grouper(3, 'abcdefg', 'x') --> ('a','b','c'), ('d','e','f'), ('g','x','x')"
return izip_longest(*[iter(iterable)]*n, fillvalue=padvalue)
</code></pre>
<p>I guess Guido's time machine works—worked—will work—will have worked—was working again.</p>
http://stackoverflow.com/questions/1655560/how-do-you-flush-python-sockets/1656960#16569600Answer by ΤΖΩΤΖΙΟΥ for How do you flush Python sockets?ΤΖΩΤΖΙΟΥ2009-11-01T11:42:56Z2009-11-01T11:42:56Z<p>What you are trying to do, is split your data into "batches".</p>
<p>For example, you are operating on "batches" whenever you read "lines" off a file. What defines a "line"? It's a sequence of bytes terminated by '\n'. Another example is: you read 64KiB "chunks" off a file. What defines a "chunk"? You do, since you read 65536 bytes every time. You want a variable length "chunk"? You just prefix your "chunk" with its size, then read the "chunk". "aiff" files (whose implementations are also the .wav and .avi files of MS Windows) and "mov" files are organized like that.</p>
<p>These three methods are the most fundamental methods to organize a stream of bytes, whatever the medium:</p>
<ol>
<li>record separators</li>
<li>fixed size records</li>
<li>records prefixed with their size.</li>
</ol>
<p>They can be mixed and/or modified. For example, you could have "variable record separators", like an XML reader: read bytes from first '<' until first '>', add a slash after first '<' and call it end-of-record, read stream until end-of-record. That's just a crude description.</p>
<p>Choose a method, and implement it in both the writer and reader. If you also document your choices, you've just defined your first protocol.</p>
http://stackoverflow.com/questions/1457045/implementation-of-set-reconciliation-algorithm/1603692#16036920Answer by ΤΖΩΤΖΙΟΥ for Implementation of set reconciliation algorithmΤΖΩΤΖΙΟΥ2009-10-21T21:13:57Z2009-10-21T21:13:57Z<p>This code is out of my head, and thus covered by whatever license applies for code samples in this site.</p>
<pre><code># given two finite sequences of unique and hashable data,
# return needed opcodes and data needed for reconciliation
def set_reconcile(src_seq, dst_seq):
"Return required operations to mutate src_seq into dst_seq"
src_set= set(src_seq) # no-op if already of type set
dst_set= set(dst_seq) # ditto
for item in src_set - dst_set:
yield 'delete', item
for item in dst_set - src_set:
yield 'create', item
</code></pre>
<p>Use as follows:</p>
<pre><code>for opcode, datum in set_reconcile(machine1_stuff, machine2_stuff):
if opcode == 'create':
# act accordingly
elif opcode == 'delete':
# likewise
else:
raise RuntimeError, 'unexpected opcode'
</code></pre>
http://stackoverflow.com/questions/1432480/any-way-to-clear-python-shell/1576881#15768810Answer by ΤΖΩΤΖΙΟΥ for Any way to clear python shell?ΤΖΩΤΖΙΟΥ2009-10-16T08:40:54Z2009-10-16T08:40:54Z<p>As mark.ribau said, it seems that there is no way to clear the Text widget in idle. One should edit the <code>EditorWindow.py</code> module and add a method and a menu item in the EditorWindow class that does something like:</p>
<pre><code>self.text.tag_remove("sel", "1.0", "end")
self.text.delete("1.0", "end")
</code></pre>
<p>and perhaps some more tag management of which I'm unaware of.</p>
http://stackoverflow.com/questions/1470350/why-is-the-windowserror-while-deleting-the-temporary-file/1472979#14729792Answer by ΤΖΩΤΖΙΟΥ for Why is the WindowsError while deleting the temporary file?ΤΖΩΤΖΙΟΥ2009-09-24T17:02:49Z2009-09-24T17:02:49Z<p>From the <a href="http://docs.python.org/library/tempfile.html#tempfile.mkstemp" rel="nofollow">documentation</a>:</p>
<blockquote>
<p>mkstemp() returns a tuple containing an OS-level handle to an open file (as would be returned by os.open()) and the absolute pathname of that file, in that order. New in version 2.3. </p>
</blockquote>
<p>So, <code>mkstemp</code> returns both the OS file handle to <em>and</em> the filename of the temporary file. When you re-open the temp file, the original returned file handle is still open (no-one stops you from opening twice or more the same file in your program).</p>
<p>If you want to operate on that OS file handle as a python file object, you can:</p>
<pre><code>>>> __, filename = tempfile.mkstemp()
>>> fptr= os.fdopen(__)
</code></pre>
<p>and then continue with your normal code.</p>
http://stackoverflow.com/questions/1471987/how-do-i-parse-an-http-date-string-in-python/1472336#14723364Answer by ΤΖΩΤΖΙΟΥ for How do I parse an HTTP date-string in Python?ΤΖΩΤΖΙΟΥ2009-09-24T15:10:31Z2009-09-24T16:37:30Z<pre><code>>>> import email.utils as eut
>>> eut.parsedate('Wed, 23 Sep 2009 22:15:29 GMT')
(2009, 9, 23, 22, 15, 29, 0, 1, -1)
</code></pre>
<p>If you want a <code>datetime.datetime</code> object, you can do:</p>
<pre><code>def my_parsedate(text):
return datetime.datetime(*eut.parsedate(text)[:6])
</code></pre>
http://stackoverflow.com/questions/1826824/os-kill-not-raising-an-oserror-however-i-do-not-see-the-given-pid-running/1828286#1828286Comment by ΤΖΩΤΖΙΟΥ on os.kill not raising an OSError, however I do not see the given pid runningΤΖΩΤΖΙΟΥ2009-12-22T22:43:25Z2009-12-22T22:43:25Z<code>grep [8]503</code> may be an old Unix trick, but <code>ps -p8503</code> is almost as old, allows multiple arguments <i>and</i> won't select other processes too (say, pids 18503 and 28503).http://stackoverflow.com/questions/1823293/optimized-method-for-calculating-cosine-distance-in-python/1823735#1823735Comment by ΤΖΩΤΖΙΟΥ on Optimized method for calculating cosine distance in PythonΤΖΩΤΖΙΟΥ2009-12-22T21:18:14Z2009-12-22T21:18:14Z@kaizer.se: <code>str.join</code> is a special case, since when it has a list, it first sums the lens, then it creates a string of total size and fills it with the parts; otherwise, it builds the string the obvious way (for part in iterable: result+= part)http://stackoverflow.com/questions/1947030/ternary-operator-python/1947113#1947113Comment by ΤΖΩΤΖΙΟΥ on Ternary Operator - PythonΤΖΩΤΖΙΟΥ2009-12-22T20:34:39Z2009-12-22T20:34:39Zjmanning2k: I reverted the answer to its initial form, since it was already correct. Think of it as an English phrase: "You should be retired if older than 65, else working."http://stackoverflow.com/questions/1933919/a-pythonic-way-how-to-find-if-a-value-is-between-two-values-in-a-list/1933932#1933932Comment by ΤΖΩΤΖΙΟΥ on A pythonic way how to find if a value is between two values in a listΤΖΩΤΖΙΟΥ2009-12-20T17:47:37Z2009-12-20T17:47:37ZAdrian, no-one is forcing you to write everything twice. If you intended it to be a joke, I didn't get it; if you meant it, you don't know Python well enough.http://stackoverflow.com/questions/1778368/python-float-str-float-weirdness/1778381#1778381Comment by ΤΖΩΤΖΙΟΥ on Python float - str - float weirdnessΤΖΩΤΖΙΟΥ2009-12-12T23:31:02Z2009-12-12T23:31:02ZI am not sure, but I perceive "precision" and "exactness" as synonyms, precision being the usual term.http://stackoverflow.com/questions/1876587/optimal-way-to-access-a-value-from-the-last-iteration-in-a-loop/1877445#1877445Comment by ΤΖΩΤΖΙΟΥ on Optimal way to access a value from the last iteration in a loopΤΖΩΤΖΙΟΥ2009-12-10T00:35:07Z2009-12-10T00:35:07ZIf I might return the favour: <code>for prev in it: break</code> is written <code>next(it, None)</code> nowadays :)http://stackoverflow.com/questions/1748641/boolean-in-python/1748672#1748672Comment by ΤΖΩΤΖΙΟΥ on Boolean in PythonΤΖΩΤΖΙΟΥ2009-12-08T00:32:43Z2009-12-08T00:32:43Zbravado: what's the point not accepting the answer you find most helpful? It's totally irrelevant if another answer is upvoted more.http://stackoverflow.com/questions/1743293/why-does-my-python-program-average-only-33-cpu-per-process-how-can-i-make-pytho/1743362#1743362Comment by ΤΖΩΤΖΙΟΥ on Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU?ΤΖΩΤΖΙΟΥ2009-12-06T20:44:51Z2009-12-06T20:44:51ZWhen hovering over the up/down vote arrow, the alt text is clear: "this answer is useful/not useful". Idiotically, it seems that many SO users read "I like this answer/I don't like this answer and this person should die a horrible death" instead, and vote accordingly. If I had to downvote an answer, I'd downvote nicholaides' answer, but I can't, for the miniscule chance he's right (although I strongly believe he's not).http://stackoverflow.com/questions/1853673/writing-a-faster-python-spiderComment by ΤΖΩΤΖΙΟΥ on Writing a Faster Python SpiderΤΖΩΤΖΙΟΥ2009-12-06T09:50:28Z2009-12-06T09:50:28ZYour best bet to make the process faster is to improve your connection speed. That will be your bottleneck, not Python speed.http://stackoverflow.com/questions/1743293/why-does-my-python-program-average-only-33-cpu-per-process-how-can-i-make-pytho/1743302#1743302Comment by ΤΖΩΤΖΙΟΥ on Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU?ΤΖΩΤΖΙΟΥ2009-12-06T09:41:34Z2009-12-06T09:41:34ZThis is <i>most probably</i> a GIL related issue on a 3-core machine, not a memory or disk access issue.http://stackoverflow.com/questions/1742866/compute-crc-of-file-in-python/1742958#1742958Comment by ΤΖΩΤΖΙΟΥ on compute crc of file in pythonΤΖΩΤΖΙΟΥ2009-12-06T09:36:26Z2009-12-06T09:36:26ZThe OP wants to see the CRC32 as hex, not as base64-encoded.http://stackoverflow.com/questions/1496456/how-to-treat-the-first-line-of-a-file-differently-in-python/1496491#1496491Comment by ΤΖΩΤΖΙΟΥ on How to treat the first line of a file differently in Python?ΤΖΩΤΖΙΟΥ2009-12-05T02:33:21Z2009-12-05T02:33:21Z**open vs file**: see what Guido says on the subject in <a href="http://mail.python.org/pipermail/python-dev/2004-July/045921.html" rel="nofollow">mail.python.org/pipermail/python-dev/…</a> and in <a href="http://mail.python.org/pipermail/python-dev/2004-July/045967.html" rel="nofollow">mail.python.org/pipermail/python-dev/…</a>. It's probable that in the future you might have to change your code from <code>file</code> to <code>open</code>.http://stackoverflow.com/questions/1850633/python-typeerror-float-object-is-not-callable/1850670#1850670Comment by ΤΖΩΤΖΙΟΥ on Python: TypeError: 'float' object is not callableΤΖΩΤΖΙΟΥ2009-12-05T02:23:45Z2009-12-05T02:23:45ZThis line: <code>set = ('SS' + repr(temp))</code> is going to cause you pain.http://stackoverflow.com/questions/1001601/why-are-there-extra-blank-lines-in-my-python-program-output/1001658#1001658Comment by ΤΖΩΤΖΙΟΥ on Why are there extra blank lines in my python program output?ΤΖΩΤΖΙΟΥ2009-12-03T00:00:47Z2009-12-03T00:00:47ZAmen, John, amen.http://stackoverflow.com/questions/19132/expression-versus-statement/19139#19139Comment by ΤΖΩΤΖΙΟΥ on Expression Versus StatementΤΖΩΤΖΙΟΥ2009-12-02T13:57:58Z2009-12-02T13:57:58Z<code>foo.voidFunc(1);</code> is an expression with a void value. <code>while</code> and <code>if</code> are statements.