Why is it bad to name a variable 'id' in Python?
|
|
|||
|
|
|
"id()" is a fundamental built-in:
In general, using variable names that eclipse a keyword or built-in function in any language is a bad idea, even if it is allowed. -k |
||||||||
|
|
|
In response to:
While this is true, it's probably a good idea to be more specific with this variable name than simply "id". Lots of things have IDs (especially if you're working with a RDBMS), and as the second line of Tim Peters's The Zen of Python tells us:
See the rest by running: |
|||
|
|
|
|
However, reusing built-in names as variables isn't all that bad as long as the use is local. Python has a lot of built-in functions that (1) have common names and (2) you will not use much anyway. Using these as local variables or as members of an object is OK because it's obvious from context what you're doing: Example:
Some built-ins with tempting names:
|
||
|
|
|
|
Because python is a dynamic language, it's not usually a good idea to give a variable and a function the same name. id() is a function in python, so it's recommend not to use a variable named id. Bearing that in mind, that applies to all functions that you might use... a variable shouldn't have the same name as a function. |
||
|
|
|
|
I might say something unpopular here: |
||||
|
|
|
'id' is a built-in method in Python. Assigning a value to 'id' will overwrite the method. It is best to use either an identifier before as in "some_id" or use it in a different capitalization method. The built in method takes a single parameter and returns an integer for the memory address of the object that you passed.
9787760
9787760 |
||
|
|
|
It's bad to name any variable after a built in function. One of the reasons is because it can be confusing to a reader that doesn't know the name is overridden. |
||
|
|
|
|
Because id is a built in function |
||
|
|
|
|
Because it's the name of a builtin function. |
||
|
|
