255
votes
117answers
43k 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, not …
171
votes
71answers
28k views
What IDE to use for Python
As a Python newbie, it is interesting to know what IDE's ("GUIs/editors") others use for Python coding.
If you can just give the name (e.g. Textpad, Eclipse ..) that will be enough. If it is already …
150
votes
78answers
11k views
Best ways to teach a beginner to program?
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 …
82
votes
32answers
7k 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 …
69
votes
25answers
5k views
What does Ruby have that Python doesn’t, and vice versa?
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, …
62
votes
15answers
4k views
How to find list of possible words from a letter matrix [Boggle Solver]
Lately I have been playing a game on my iPhone called Scramble. Some of you may know this game as Boggle. Essentially, when the game starts you get a matrix of letters like so:
F X I E
A M L O
E W B …
54
votes
7answers
3k views
Bubble Sort Homework
In class we are doing sorting algorithms and, although I understand them fine when talking about them and writing pseudocode, I am having problems writing actual code for them.
This is my attempt in …
48
votes
5answers
5k 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.
…
47
votes
50answers
6k views
Is there an IDE that provides code completion for Python
I am quite fond of the Intellisense code completion baked into Microsoft Visual Studio. I find that I only type 2 to 4 characters of any given keyword which drasticaly speeds up my coding. Now that I …
45
votes
9answers
9k views
can somebody explain me the python yield statement?
In plain english, please...
I'm trying to understand this code:
def node._get_child_candidates(self, distance, min_dist, max_dist):
if self._leftchild and distance - max_dist < self._median:
…
45
votes
6answers
2k 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 …
43
votes
39answers
5k views
Are there any good reasons why I should not use Python?
I've heard from reliable sources that Python is a great language that every programmer can learn, but I've heard so much good about it that I'm clearly not getting the whole picture. I'm considering …
43
votes
18answers
4k 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?
42
votes
8answers
2k views
What does ** and * do for python parameters?
In the following method, what does the * and ** do for param2? I'm new to Python...I assume it's a reference or pointer. Answers?
def foo(param1, *param2):
def bar(param1, **param2):
40
votes
9answers
5k views
How do you express binary literals in python?
How do you express an integer as a binary number with python literals?
I was easily able to find the answer for hex:
>>> 0x12AF
4783
>>> 0x100
256
and, octal:
>>> 01267
…
