Tagged Questions
Python is a dynamically and strongly typed programming language whose design philosophy emphasizes code readability. Two significantly different versions of Python (2 and 3) are in use. Please mention the version that you are using when asking a question about Python.
418
votes
19answers
22k views
“Least Astonishment” in Python: The Mutable Default Argument
Anyone tinkering with python long enough has been bitten (or torn to pieces) by the following issue:
def foo(a=[]):
a.append(5)
return a
Python novices would expect this function to always ...
234
votes
15answers
83k views
The Python Slice Notation
Do you have a good reference on the Python slice notation? To me, this notation needs a bit of picking up. It looks extremely powerful, but I haven't quite got my head round it and am looking for a ...
254
votes
20answers
77k views
How do you split a list into evenly sized chunks in Python?
I have a list of arbitrary length, and I need to split it up into equal size chunks and operate on it. There are some obvious ways to do this, like keeping a counter and two lists, and when the second ...
940
votes
10answers
208k views
How can I make a chain of function decorators in Python?
How can I make two decorators in Python that would do the following.
@makebold
@makeitalic
def say():
return "Hello"
which should return
<b><i>Hello</i></b>
I'm not ...
414
votes
11answers
150k views
Python: How do I pass a variable by reference?
The Python documentation seems unclear about whether parameters are passed by reference or value, and the following code produces the unchanged value 'Original'
class PassByReference:
def ...
1133
votes
8answers
150k views
What is a metaclass in Python?
I've mastered almost all the Python concepts (well, let's say they're just OO concepts :-)) but this one is tricky.
I know it has something to do with introspection but it's still unclear to me.
So ...
1667
votes
14answers
304k views
The Python yield keyword explained
What is the use of the yield keyword in Python? What does it do?
For example, I'm trying to understand this code (**):
def node._get_child_candidates(self, distance, min_dist, max_dist):
if ...
65
votes
14answers
13k views
Flatten (an irregular) list of lists in Python
Yes, I know this subject has been covered before (here, here, here, here), but as far as I know, all solutions, except for one, fail on a list like this:
L = [[[1, 2, 3], [4, 5]], 6]
Where the ...
208
votes
9answers
112k views
Making a flat list out of list of lists in Python [duplicate]
Possible Duplicates:
Flattening a shallow list in Python
Comprehension for flattening a sequence of sequences?
I wonder whether there is a shortcut to make a simple list out of list of ...
572
votes
25answers
346k views
93
votes
9answers
32k views
Flattening a shallow list in Python
On a Django project, I was hoping to flatten a shallow list with a nested list comprehension, like this:
[image for image in menuitem.image_set.all() for menuitem in list_of_menuitems]
But I get in ...
75
votes
15answers
10k views
What is the most “pythonic” way to iterate over a list in chunks?
I have a Python script which takes as input a list of integers, which I need to work with four integers at a time. Unfortunately, I don't have control of the input, or I'd have it passed in as a list ...
101
votes
9answers
14k views
Python “is” operator behaves unexpectedly with integers
Why does the following behave unexpectedly in Python?
>>> a = 256
>>> b = 256
>>> a is b
True # this is an expected result
>>> a = 257
>>> b = ...
201
votes
8answers
92k views
What does <if __name__==“__main__”:> do?
Kinda in relation to this question...
what does the if __name__=="__main__": part do?
# Threading example
import time, thread
def myfunction(string,sleeptime,lock,*args):
while 1:
...
154
votes
11answers
85k views
Is there any way to kill a Thread in Python?
Is it possible to terminate a running thread without setting/checking any flags/semaphores/etc.?
114
votes
19answers
20k views
Fastest way to list all primes below N in python
This is the best algorithm I could come up with after struggling with a couple of Project Euler's questions.
def get_primes(n):
numbers = set(range(n, 1, -1))
primes = []
while numbers:
...
189
votes
23answers
55k views
How do I protect python code?
I am developing a piece of software in python that will be distributed to my employer's customers. My employer wants to limit the usage of the software with a time restricted license file.
If we ...
110
votes
9answers
59k views
Python 'self' explained
What is the purpose of the self word in Python? I understand it refers to the specific object created from that class, but I can't see why it explicitly needs to be added to every function as a ...
16
votes
7answers
4k views
How to improve performance of this code?
Thanks to some help from people here, I was able to get my code for Tasmanian camels puzzle working. However, it is horribly slow (I think. I'm not sure because this is my first program in python). ...
139
votes
14answers
51k views
Non-blocking read on a subprocess.PIPE in python
I'm using the subprocess module to start a subprocess and connect to it's output stream (stdout). I want to be able to execute non-blocking reads on its stdout. Is there a way to make .readline ...
471
votes
7answers
446k views
Using global variables in a function other than the one that created them
If I create a global variable in one function, how can I use that variable in another function?
Do I need to store the global variable in a local variable of the function which needs its access?
155
votes
8answers
28k views
Old style and new style classes in Python
What is the difference between old style and new style classes in Python? Is there ever a reason to use old-style classes these days?
101
votes
10answers
52k views
Python output buffering
Is output buffering enabled by default in Python's interpreter for sys.stdout ?
If the answer is positive, what are all the ways to disable it ?
Suggestions so far:
Use the -u command line switch
...
249
votes
6answers
56k views
Which Python memory profiler is recommended?
I want to know the memory usage of my Python application and specifically want to know what code blocks/portions or objects are consuming most memory.
Google search shows a commercial one is Python ...
558
votes
10answers
125k views
Ternary conditional operator in Python
Does Python have a ternary conditional operator? If not, is it possible to simulate one concisely using other language constructs?
117
votes
10answers
44k views
Remove items from a list while iterating in Python
I'm iterating over a list of tuples in Python, and am attempting to remove them if they meet certain criteria.
for tup in somelist:
if determine(tup):
code_to_remove_tup
What should I ...
651
votes
40answers
131k views
How can I represent an 'enum' in Python?
I'm mainly a C# developer, but I'm currently working on a project in Python.
How can I represent the equivalent of an enum in Python?
312
votes
11answers
159k views
Static class variables in Python
Is it possible to have static class variables or methods in python? What syntax is required to do this?
120
votes
6answers
32k views
Python List Comprehension Vs. Map
Is there a reason to prefer using map() over list comprehension or vice versa? Is one generally more effecient or generally considered more pythonic than the other?
75
votes
6answers
9k views
How to translate between programming languages
I am setting out to do a side project that has the goal of translating code from one programming language to another. The languages I am starting with are PHP and Python (Python to PHP should be ...
340
votes
15answers
132k views
409
votes
22answers
233k views
Python: Sort a dictionary by value
I have a dictionary of values read from 2 fields in a database: a string field and a numeric field. The string field is unique so that is the key of the dictionary.
I can sort on the keys, but how ...
192
votes
9answers
48k views
How can you profile a Python script?
I've seen a quite a few questions on the Project Euler and other places asking how to time the execution of their solutions. Sometimes the given answers are somewhat kludgey - i.e., adding timing code ...
353
votes
7answers
58k views
Difference between __str__ and __repr__ in Python
What is the difference between __str__ and __repr__ in Python?
142
votes
16answers
64k views
How to do relative imports in Python?
Imagine this directory structure:
app/
__init__.py
sub1/
__init__.py
mod1.py
sub2/
__init__.py
mod2.py
I'm coding mod1, and I need to import something from mod2. ...
113
votes
15answers
78k views
How do you remove duplicates from a list in Python whilst preserving order?
Is there a built-in that removes duplicates from list in Python, whilst preserving order? I know that I can use a set to remove duplicates, but that destroys the original order. I also know that I can ...
44
votes
5answers
21k views
Short Description of Python Scoping Rules
What exactly are the Python scoping rules?
If I have come code:
code1
class Foo:
code2
def spam.....
code3
for code4..:
code5
x()
Where is x found? Some possible ...
82
votes
15answers
41k views
How do I watch a file for changes using Python?
I have a log file being written by another process which I want to watch for changes. Each time a change occurrs I'd like to read the new data in to do some processing on it.
What's the best way to ...
71
votes
4answers
25k views
What is the best way to remove accents in a python unicode string?
I have a unicode string in python, and I would like to remove all the accents (diacritics).
I found on the Web an elegant way to do this in Java:
convert the unicode string to its long normalized ...
124
votes
17answers
46k views
Should I learn Python 2 before 3, or start directly from Python 3? [closed]
I would like to learn python and currently have access to some good python 2 books. However python 3 is not guaranteed to be backward compatible with python 2. If I were to learn python 2 I have to ...
86
votes
7answers
49k views
How do you create a daemon in Python?
Searching on Google reveals x2 code snippets. The first result is to this code recipe which has a lot of documentation and explanation, along with some useful discussion underneath.
However, another ...
83
votes
13answers
68k views
How to generate all permutations of a list in Python
How do you generate all the permutations of a list in Python, independently of the type of elements in that list.
For example:
permutations ([])
[]
permutations ([1,])
[1]
permutations ([1,2])
...
36
votes
7answers
31k views
Convert XML/HTML Entities into Unicode String in Python
I'm doing some web scraping and sites frequently use HTML entities to represent non ascii characters. Does Python have a utility that takes a string with HTML entities and returns a unicode type?
For ...
63
votes
10answers
24k views
How do you send a HEAD HTTP request in Python?
So what I'm trying to do here is get the headers of a given URL so I can determine the mime-type. I want to be able to see if http://somedomain/foo/ will return an html document or a jpg image for ...
222
votes
9answers
104k views
How to flush output of Python print? [duplicate]
Possible Duplicate:
Python output buffering
I would like to force Python's print function to output to the screen.
111
votes
10answers
107k views
Python '==' vs 'is' comparing strings, 'is' fails sometimes, why?
I've got a python program where two variables are set to the value 'public'. In a conditional expression I have the comparison var1 is var2 which fails, but if I change it to var1 == var1 it returns ...
143
votes
11answers
38k views
*args and **kwargs?
So I have difficulty with the concept of *args and **kwargs.
So far I have learned that:
*args = list of arguments -as positional arguments
**kwargs = dictionary - whose keys become separate ...
143
votes
10answers
41k views
Good Python modules for fuzzy string comparison?
I'm looking for a Python module that can do simple fuzzy string comparisons. Specifically, I'd like a percentage of how similar the strings are. I know this is potentially subjective so I was hoping ...
188
votes
9answers
35k views
The meaning of a single- and a double-underscore before an object name in Python
I want to clear this up once and for all. Can someone please explain the exact meaning of having leading underscores before an object's name in Python? Also explain the difference between a single and ...
272
votes
9answers
203k views
How do you read from stdin in python
I'm trying to do some of the code golf challenges but they all require the input to be taken from stdin and I don't know how to get that in python.