Python is an interpreted, general-purpose high-level programming language whose design philosophy emphasizes code readability.
1355
votes
190answers
178k views
Hidden features of Python
What are the lesser-known but useful features of the Python programming language?
Try to limit answers to Python core.
One feature per answer.
Give an example and short description of the feature, ...
972
votes
123answers
207k views
What IDE to use for Python? [closed]
Caution!
This ancient question is from the early days of Stack Overflow, and while we recognize its historical significance and have thus chosen to keep it around, please realize that if a ...
518
votes
10answers
118k 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 ...
396
votes
9answers
64k views
What is a metaclass in Python?
I've mastered almost all the Python concepts (well, let's say there are just OO concepts :-)) but this one is tricky.
I know it has something to do with introspection but it's still unclear to me.
...
358
votes
27answers
11k views
Using a piano keyboard as a computer keyboard
I have RSI problems and have tried 30 different computer keyboards which all caused me pain. Playing piano does not cause me pain. I would like to know if there is a way to capture MIDI from a MIDI ...
326
votes
19answers
37k views
Python progression path - From apprentice to guru
I've been learning, working, and playing with Python for a year and a half now. As a biologist slowly making the turn to bio-informatics, this language has been a the very core of all the major ...
321
votes
15answers
111k views
Is there any way to run Python on Android?
I like the Android platform. Actually, with some friends, we even participate to the ADC with the Spoxt project.
But Java is not my favourite language at all. We are working on a S60 version and this ...
312
votes
87answers
27k views
Best ways to teach a beginner to program? [closed]
Original Question
I am currently engaged in teaching my brother to program. He is a total beginner, but very smart. (And he actually wants to learn). I've noticed that some of our sessions have ...
307
votes
18answers
17k views
Peak detection in a 2D array
I'm helping a veterinary clinic measuring pressure under a dogs paw. I use Python for my data analysis and now I'm stuck trying to divide the paws into (anatomical) subregions.
I made a 2D array of ...
296
votes
55answers
29k views
Favorite Django Tips & Features?
Inspired by the question series 'Hidden features of ...', I am curious to hear about your favorite Django tips or lesser known but useful features you know of.
Please, include only one tip per ...
278
votes
32answers
51k views
What's the best way to implement an 'enum' in Python?
I'm mainly a C# developer, but I'm currently working on a project in Python.
What's the best way to implement the equivalent of an enum in Python?
270
votes
7answers
58k views
Understanding Python decorators
How can I make a decorator in Python that would do the following.
@makebold
@makeitalic
def say():
return "Hello"
which should return
<b><i>Hello</i></b>
I'm not ...
258
votes
36answers
26k views
What does Ruby have that Python doesn't, and vice versa? [closed]
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, ...
211
votes
13answers
138k views
How do I check if a file exists using Python?
How do I check if a file exists, using Python. without using a try: statement?
171
votes
14answers
44k views
Pros/Cons of Django vs Pylons
I'm begining a new webapp in Python. I've narrowed my choices down to Django and Pylons. What are the pros/cons of each?
170
votes
20answers
29k views
Single quotes vs. double quotes in Python
According to the documentation, they're pretty much interchangeable. Is there a stylistic reason to use one over the other?
169
votes
36answers
25k views
Rails or Django? (or something else?) [closed]
This post is from the early days of Stack Overflow, and while we recognize its historical significance, we also recognize that the current community of users will likely close similar posts. Please ...
168
votes
23answers
21k views
Does Django Scale?
I'm building a web application with Django. The reasons I chose Django were:
I wanted to work with free/open-source tools
I like Python and feel it's a "long term" language, whereas regarding Ruby I ...
158
votes
7answers
175k views
Using global variables in a function other than the one that created them
A global variable created in one function cannot be used in another function directly.
Instead I need to store the global variable in a local variable of the function which needs its access. Am I ...
154
votes
7answers
17k views
What is the difference between @staticmethod and @classmethod in Python?
What is the difference between a function decorated with @staticmethod and one decorated with @classmethod?
150
votes
8answers
36k views
Python Ternary Operator
I was under the impression that Python had a ternary operator...
But then I did some research,
Not enough to find out for sure though
Thought I'd ask the professionals ;)
149
votes
8answers
77k views
Python: What is the best way to check if a list is empty?
For example, if passed the following:
a = []
How do I check to see if a is empty?
142
votes
16answers
48k views
Print in terminal with colors using python?
I want to print in the terminal with colors. How can I do that in python?
Another questions what is the best character that when it is printed it look like a box [brick]?
I want to print colored ...
142
votes
14answers
109k views
141
votes
11answers
49k views
How can I merge two Python dictionaries as a single expression?
I have two Python dictionaries, and I want to write a single expression that returns these two dictionaries, merged. The update() method would be what I need, if it returned its result instead of ...
139
votes
11answers
51k 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 ...
136
votes
14answers
6k views
“Least Astonishment” in Python: The Mutable Default Argument
Anyone tinkering with python long enough has been bit (or torn to pieces) by the following issue:
def foo(a=[]):
a.append(5)
return a
Python novices would expect this function to always ...
131
votes
9answers
109k views
How can I remove (chomp) a newline in Python?
This is one of my most common questions when I am coding Python (I was fed Perl as a baby and am forever trying to get rid of that affliction) and I wanted to put it out there on stack overflow so ...
128
votes
23answers
51k views
Is Python any good for GUI development?
I am considering creating a GUI-based tool that I want to be cross-platform. I've dismissed Java, as I personally do not like Swing. I'm currently considering C# and using Mono to make it ...
125
votes
9answers
40k views
Why are scripting languages (e.g. Perl, Python, Ruby) not suitable as shell languages?
What are the differences between shell languages like bash, zsh, fish and the scripting languages above that makes them more suitable for the shell?
When using the command line the shell languages ...
123
votes
6answers
88k views
Python: Best way to create directory if it doesn't exist for file write?
What's the most elegant way to check if the directory a file is going to be written to exists, and if not create the directory? Is there a better way than:
Update: Somehow I'd missed os.path.exists, ...
123
votes
4answers
26k views
Python memory profiler
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 ...
117
votes
9answers
66k 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?
116
votes
17answers
71k 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 ...
110
votes
6answers
2k views
Best programming aids for a quadriplegic programmer
Before you jump to conclusions, yes, this is programming related. It covers a situation that comes under the heading of, "There, but for the grace of God, go you or I." This is brand new territory for ...
109
votes
7answers
75k 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.
106
votes
9answers
7k views
Speed comparison with Project Euler: C vs Python vs Erlang vs Haskell
I have taken Problem #12 from Project Euler as a programming exercise and to compare my (surely not optimal) implementations in C, Python, Erlang and Haskell. In order to get some higher execution ...
106
votes
11answers
39k views
How do I remove packages installed with Python's easy_install?
Python's easy_install makes installing new packages extremely convenient. However, as far as I can tell, it doesn't implement the other common features of a dependency manager - listing and removing ...
104
votes
6answers
8k views
What's the best solution for OpenID with Django?
There are at least half a dozen Django apps that provide OpenID authentication for Django:
django-openid
django-openid-auth
another django-openid-auth, which seems to be dead
django-authopenid
...
102
votes
6answers
14k views
Difference between __str__ and __repr__ in Python
What is the difference between __str__ and __repr__ in Python?
99
votes
8answers
53k views
How to flush output of Python print?
I would like to force Python's print function to output to the screen.
99
votes
17answers
43k views
What's the best SOAP client library for Python, and where is the documentation for it?
I've never used SOAP before and I'm sort of new to Python. I'm doing this to get myself acquainted with both technologies. I've installed SOAPlib and I've tried to read their Client documentation, ...
99
votes
9answers
5k views
Is there any difference between “foo is None” and “foo == None”?
Is there any difference between:
if foo is None: pass
and
if foo == None: pass
The convention that I've seen in most Python code (and the code I myself write) is the former, but I recently came ...
98
votes
14answers
31k 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 ...
95
votes
21answers
27k 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 ...
93
votes
1answer
3k views
SQLAlchemy versioning cares about class import order
I was following the guide here:
http://www.sqlalchemy.org/docs/orm/examples.html?highlight=versioning#versioned-objects
and have come across an issue. I have defined my relationships like:
...
92
votes
3answers
29k views
Getting the class name of an instance in Python
How do I find out a name of class that created an instance of an object in Python if the function I am doing this from is the base class of which the class of the instance has been derived?
Was ...
91
votes
3answers
5k views
How can I improve my paw detection?
After my previous question on finding toes within each paw, I started loading up other measurements to see how it would hold up. Unfortunately, I quickly ran into a problem with one of the preceding ...
91
votes
5answers
8k views
Why use pip over easy_install?
A tweet reads:
Don't use easy_install, unless you
like stabbing yourself in the face.
Use pip.
Why use pip over easy_install? Doesn't the fault lie with PyPI and package authors mostly? If ...
90
votes
2answers
51k views
Understanding Python super() and init methods
Trying to understand super(). From the looks of it, both child classes can be created just fine. Im curious as to what difference there actually is in this code:
class Base(object):
def ...