Tagged Questions
58
votes
2answers
2k views
How to dynamically create a derived type in the Python C-API
Assume we have the type Noddy as defined in the tutorial on writing C extension modules for Python. Now we want to create a derived type, overwriting only the __new__() method of Noddy.
Currently I ...
33
votes
8answers
9k views
how to print number with commas as thousands separators in Python 2.x
I am trying to print an integer in Python 2.6.1 with commas as thousands separators. For example, I want to show the number 1234567 as "1,234,567". How would I go about doing this? I have seen many ...
21
votes
12answers
6k views
What is the difference between range and xrange?
Apparently xrange is faster but I have no idea why it's faster (and no proof besides the anecdotal so far that it is faster) or what besides that is different about
for i in range(0, 20):
for i in ...
18
votes
3answers
584 views
Why does 4 < '3' return True in Python 2?
Why does 4 < '3' return True in Python 2?
Is it because when I place single quotes around a number Python sees it as a string and strings are bigger than numbers?
16
votes
2answers
607 views
Writing a parallel programming framework, what have I missed?
Clarification: As per some of the comments, I should clarify that this is intended as a simple framework to allow execution of programs that are naturally parallel (so-called embarrassingly parallel ...
15
votes
3answers
270 views
Is it ever useful to use Python's input over raw_input?
I currently teach first year university students python, and I was surprised to learn that the seemingly innocuous input function, that some of my students had decided to use (and were confused by the ...
13
votes
5answers
211 views
How to write Python 2.x as much compatible with Python 3.x as possible?
There are many ways to include Python 3.x features in Python 2.x, so code of Python 2.x scripts could be easily converted into Python 3.x in the future. One of these examples is replacing print ...
13
votes
4answers
890 views
Python closure: Write to variable in parent scope
I have the following code inside a function:
stored_blocks = {}
def replace_blocks(m):
block = m.group(0)
block_hash = sha1(block)
stored_blocks[block_hash] = block
return '{{{%s}}}' ...
13
votes
6answers
2k views
Learn Python the Hard Way Exercise 17 Extra Question(S)
I'm doing Zed Shaw's fantastic Learn Python The Hard Way, but an extra question has me stumped: Line 9--10 could be written in one line, how? I've tried some different thoughts, but to no avail. I ...
13
votes
4answers
2k views
Why can't Python handle true/false values as I expect?
As part of answering another question, I wrote the following code whose behaviour seems bizarre at first glance:
print True # outputs true
True = False; print True # outputs ...
11
votes
3answers
5k views
Python re.sub MULTILINE caret match
The Python docs say:
re.MULTILINE: When specified, the pattern character '^' matches at the beginning of the string and at the beginning of each line (immediately following each newline)... By ...
10
votes
6answers
527 views
Check for mutability in Python?
Consider this code:
a = {...} # a is an dict with arbitrary contents
b = a.copy()
What role does mutability play in the keys and values of the dicts?
How do I ensure changes to keys or values of ...
9
votes
5answers
4k views
Read Unicode characters from command-line arguments in Python 2.x on Windows
I want my Python script to be able to read Unicode command line arguments in Windows. But it appears that sys.argv is a string encoded in some local encoding, rather than Unicode. How can I read the ...
8
votes
2answers
318 views
How to organize Python modules for PyPI to support 2.x and 3.x
I have a Python module that I would like to upload to PyPI. So far, it is working for Python 2.x. It shouldn't be too hard to write a version for 3.x now.
But, after following guidelines for making ...
8
votes
6answers
3k views
Tutorial for Python - Should I use 2.x or 3.0?
Python 3.0 is in beta with a final release coming shortly. Obviously it will take some significant time for general adoption and for it to eventually replace 2.x.
I am writing a tutorial about ...
7
votes
8answers
5k views
Printing without newline (print 'a',) prints a space, how to remove?
I have this code:
>>> for i in xrange(20):
... print 'a',
...
a a a a a a a a a a a a a a a a a a a a
I want to output 'a', without ' ' like this:
aaaaaaaaaaaaaaaaaaaa
Is it ...
7
votes
1answer
130 views
Writing a module for both Python 2.x and 3.x
I've written a pure-Python module for Python 3.0/3.1 which I'd also like to make it compatible with 2.x (probably just 2.6/2.7) in order to make it available to the widest possible audience.
The ...
7
votes
2answers
319 views
Getting ready to convert from Python 2.x to 3.x
As we all know by now (I hope), Python 3 is slowly beginning to replace Python 2.x. Of course it will be many MANY years before most of the existing code is finally ported, but there are things we can ...
7
votes
5answers
471 views
Tell if python is in interactive mode
In a python script, is there any way to tell if the interpreter is in interactive mode? This would be useful, for instance, when you run an interactive python session and import a module, slightly ...
6
votes
3answers
161 views
Is “backporting” Python 3's `range` to Python 2 a bad idea?
One of my classes requires assignments to be completed in Python, and as an exercise, I've been making sure my programs work in both Python 2 and Python 3, using a script like this:
#!/bin/bash
# Run ...
6
votes
4answers
224 views
Uses of Python's “from” keyword?
Are there any other uses for Python's "from" keyword aside from import statements?
6
votes
5answers
135 views
Python name of class in class body
Is it possible to get the class name within the body of a class definition?
For example,
class Foo():
x = magic() # x should now be 'Foo'
I know that I can do this statically outside of the ...
6
votes
4answers
320 views
Why is int(50)<str(5) in python 2.x?
In python 3, int(50)<'2' causes a TypeError, and well it should. In python 2.x, however, int(50)<'2' returns True (this is also the case for other number formats, but int exists in both py2 and ...
6
votes
4answers
345 views
How can “k in d” be False, but “k in d.keys()” be True?
I have some python code that's throwing a KeyError exception. So far I haven't been able to reproduce outside of the operating environment, so I can't post a reduced test case here.
The code that's ...
6
votes
4answers
617 views
Implicitly invoking parent class initializer
class A(object):
def __init__(self, a, b, c):
#super(A, self).__init__()
super(self.__class__, self).__init__()
class B(A):
def __init__(self, b, c):
print super(B, ...
6
votes
4answers
746 views
making python 2.6 exception backward compatible
I have the following python code:
try:
pr.update()
except ConfigurationException as e:
returnString=e.line+' '+e.errormsg
This works under python 2.6, but the "as e" syntax fails ...
5
votes
5answers
132 views
How do I learn Python 2 if I already know Python 3?
I have some knowledge of Python 3 (I'm not a beginner, but I'm not an expert). I'm interested in web development, so I want to use Django. What are the differences between the two versions of Python? ...
5
votes
1answer
98 views
Determine if 2 lists have the same elements, regardless of order?
Sorry for the simple question, but I'm having a hard time finding the answer.
When I compare 2 lists, I want to know if they are "equal" in that they have the same contents, but in different order.
...
5
votes
1answer
235 views
Unicode literals that work in python 3 and 2
So I have a python script that I'd prefer worked on python 3.2 and 2.7 just for convenience.
Is there a way to have unicode literals that work in both? E.g.
#coding: utf-8
whatever = 'שלום'
The ...
5
votes
4answers
342 views
How do the compression codecs work in Python?
I'm querying a database and archiving the results using Python, and I'm trying to compress the data as I write it to the log files. I'm having some problems with it, though.
My code looks like this:
...
5
votes
5answers
236 views
Identifying that a variable is a new-style class in Python?
I'm using Python 2.x and I'm wondering if there's a way to tell if a variable is a new-style class? I know that if it's an old-style class that I can do the following to find out.
import types
class ...
5
votes
3answers
997 views
Returning the first N characters of a unicode string
I have a string in unicode and I need to return the first N characters.
I am doing this:
result = unistring[:5]
but of course the length of unicode strings != length of characters.
Any ideas? The ...
4
votes
2answers
152 views
PYTHON-2.x Syntax error on line 1 but i don't see any?
the following file is located in this directory: /Users/whiteglider/Documents
name of file: server.py
this is my practice code which i just copied from ...
4
votes
2answers
239 views
How to create a python 2.x package - simple case
Please show the simple and up to date standard way to create a python package for python 2.x
I'd prefer to use pip for installing the package later.
The package should contain a single class:
class ...
4
votes
3answers
2k views
Safest way to convert float to integer in python?
Python's math module contain handy functions like floor & ceil. These functions take a floating point number and return the nearest integer bellow or above it. However these functions return the ...
4
votes
2answers
501 views
How to force PyYAML to load strings as unicode objects?
The PyYAML package loads unmarked strings as either unicode or str objects, depending on their content.
I would like to use unicode objects throughout my program (and, unfortunately, can't switch to ...
4
votes
3answers
401 views
Python (2.6) , List Comprehension: why is this a syntax error?
Why is print(x) here not valid (SyntaxError) in the following list-comprehension?
my_list=[1,2,3]
[print(my_item) for my_item in my_list]
To contrast - the following doesn't give a syntax error:
...
4
votes
5answers
570 views
An equivalent to string.ascii_letters for unicode strings in python 2.x?
In the "string" module of the standard library,
string.ascii_letters ## Same as string.ascii_lowercase + string.ascii_uppercase
is
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
Is ...
4
votes
4answers
724 views
Default encoding of exception messages
The following code examines the behaviour of the float() method when fed a non-ascii symbol:
import sys
try:
float(u'\xbd')
except ValueError as e:
print sys.getdefaultencoding() # in my system, ...
3
votes
1answer
38 views
Call a python subprocess as daemon and exit
I'm using a pair of python programs, one of which should call the second.
But this should be done in a way that the first program makes the second one a daemon (or running in the background process), ...
3
votes
4answers
148 views
Elegant way to remove contiguous repeated elements in a list?
I'm looking for a clean, Pythonic, way to eliminate from the following list:
li = [0, 1, 2, 3, 3, 4, 3, 2, 2, 2, 1, 0, 0]
all contiguous repeated elements (runs longer than one number) so as to ...
3
votes
2answers
275 views
Python: repr vs backquote
In python, is there a difference between repr and the backquote ` (left of 1)?
For demonstration:
class A(object):
def __repr__(self):
return 'repr A'
def __str__(self):
...
3
votes
2answers
97 views
does Python for windows ever insert '\r\n' when told to insert '\n'?
I use a PC at home and a Mac at work. I've never had any problems with line breaks in python script or their outputs, but whenever i send something to my boss i get an angry e-mail back about windows ...
3
votes
2answers
95 views
Iterating over multiple files and replacing a single line - why doesn't it work?
I'm trying to use the fileinput module to iterate over a bunch of files and replace a single line in them. This is how my code looks:
def main():
for root, dirs, files in ...
3
votes
1answer
76 views
How to print a table from lists with different lengths in Python
How do I print a table from two lists that have varying lengths (each list being a column)?
Example:
>>> l1=['Cat', 'Dog', 'Gorilla', 'Ladybug']
>>> l2=['Cat', 'Dog']
>>> ...
3
votes
4answers
219 views
Where does the newline come from in Python?
In Python when I do
print "Line 1 is"
print "big"
The output I get is
Line 1 is
big
Where does the newline come from? And how do I type both statements in the same line using two print ...
3
votes
2answers
299 views
random.randint error
I have some code that looks something like this:
import random
n = 0
while n <= 50:
n = n+1
a = random.randint(1, 16)
b = random.randint(1, 5)
print n, ". ", a, "-", b, "= "
For some ...
3
votes
5answers
605 views
Lisp's apply and funcall vs Python's apply
Lisp's apply is for Lisp's APPLY is for calling functions with computed argument lists stored in lists.(Modified from Rainer's comment)
For example, the following code changes (list 1 2 3) to (+ 1 2 ...
3
votes
5answers
1k views
Uninstall python built from source?
I've installed python 2.6 from source, and somehow later mistakenly installed another python 2.6 from a package manager too.
I can't find a way to uninstall a python that was built from source, is ...
3
votes
5answers
335 views
__cmp__ method is this not working as expected in Python 2.x?
class x:
def __init__(self,name):
self.name=name
def __str__(self):
return self.name
def __cmp__(self,other):
print("cmp method called with ...