164
votes
69answers
26k 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 enoug …
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 o …
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 …
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 …
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.
Th …
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 sti …
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 …
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 …
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, …
42
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, **par …
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: …
36
votes
18answers
3k views
Does Django Scale?
Hello,
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" langua …
34
votes
12answers
10k views
How to setup setuptools for python 2.6 on Windows?
Is there any way to install setuptools for python 2.6 in Windows without having an .exe installer?
There isn't one built at the moment, and the maintainer of setuptools has state …
34
votes
9answers
2k views
Is there a way to convert indentation in Python code to braces?
I am a totally blind programmer who would like to learn Python. Unfortunately the fact that code blocks are represented with different levels of indentation is a major stumbling bl …
