1398
votes
191answers
185k views

Hidden features of Python [closed]

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, ...
1009
votes
123answers
215k 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 ...
556
votes
10answers
125k 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 ...
430
votes
9answers
67k 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. ...
392
votes
31answers
12k views
+500

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 ...
336
votes
19answers
38k 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 ...
331
votes
15answers
115k 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 ...
319
votes
87answers
28k 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 ...
312
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 ...
306
votes
55answers
30k 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 ...
290
votes
33answers
55k 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?
287
votes
7answers
63k 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 ...
220
votes
13answers
146k 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?
184
votes
20answers
30k 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?
180
votes
36answers
26k 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 ...
179
votes
23answers
22k 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 ...
179
votes
14answers
45k 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
7answers
186k 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 ...
160
votes
7answers
18k 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?
157
votes
8answers
38k 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 ;)
154
votes
14answers
118k views

How to call external command in Python

How can I call external command in Python?
154
votes
9answers
82k 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?
150
votes
11answers
53k 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 ...
147
votes
13answers
7k 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 ...
146
votes
16answers
51k 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 ...
144
votes
11answers
55k 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 ...
143
votes
9answers
115k 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 ...
134
votes
11answers
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 ...
132
votes
6answers
94k 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, ...
131
votes
23answers
54k 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 ...
129
votes
4answers
27k 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 ...
125
votes
17answers
76k 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 ...
125
votes
9answers
70k 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?
117
votes
7answers
81k 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.
111
votes
7answers
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 ...
111
votes
6answers
16k views

Difference between __str__ and __repr__ in Python

What is the difference between __str__ and __repr__ in Python?
111
votes
11answers
42k 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 ...
109
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
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 ...
106
votes
8answers
56k views

How to flush output of Python print?

I would like to force Python's print function to output to the screen.
105
votes
17answers
46k 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, ...
103
votes
15answers
33k 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 ...
101
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 ...
100
votes
20answers
28k 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 ...
98
votes
5answers
9k 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 ...
97
votes
2answers
55k 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 ...
96
votes
4answers
31k 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 ...
95
votes
18answers
20k views

Why don't they implement Python and Ruby in the web browsers? [closed]

I wonder, why don't they implement other languages like Python and Ruby in the web browsers? Don't they fit as client programming languages or did it just happen to be that JavaScript was the first ...
95
votes
10answers
118k views

Python - Parse String to Float or Int

This should be simple - In python, how can I parse a numeric string like "545.2222" to its corresponding float value, 542.2222 or "31" to an integer, 31? EDIT: I just wanted to know how to parse a ...
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: ...

1 2 3 4 5 1895