0
votes
‘id’ is a bad variable name in Python
In response to:
id is a rather specialized built-in
function that is rarely used in
business logic. Therefore I don't see
a problem in using it as a variable
name in …
11
votes
Which is faster, python webpages or php webpages?
It sounds like you don't want to compare the two languages, but that you want to compare two web systems.
This is tricky, because there are many variables …
0
votes
python static variable
To avoid any potential confusion, I would like to contrast static variables and immutable objects.
Some primitive object types like integers, floats, strings, and touples are immutable in P …
1
vote
Why are Python’s ‘private’ methods not actually private?
Similar behavior exists when module attribute names begin with a single underscore (e.g. _foo).
Module attributes named as such will not be copied into an importing module when using the …
1
vote
What’s a good lightweight Python MVC framework?
I'm also on the Django boat. Here are a few reasons why:
You'll likely save time with Django's …
0
votes
How to do relative imports in Python?
On a related note, Python 3 will change the default handling of imports to be absolute by default; relative imports will have t …
0
votes
The best Django webcasts/videos
First, don't read the Django book. It's very outdated. Instead, read the official Django docs.
Also, he …
2
votes
What Hosting Service is best for Django applications?
Another cheer for Slicehost here.
Even if you do't use them as a host, they have some amazing public t …
