up vote 11 down vote favorite
share [g+] share [fb]

Why is it bad to name a variable 'id' in Python?

link|improve this question

75% accept rate
1  
Most people append an underscore to identifiers that clash with builtins/keywords: id_, map_, list_, filter_, etc. – cdleary Nov 1 '08 at 23:11
feedback

9 Answers

up vote 28 down vote accepted

"id()" is a fundamental built-in:

Help on built-in function id in module builtin:

id(...) id(object) -> integer

Return the identity of an object.  This is guaranteed to be unique among
simultaneously existing objects.  (Hint: it's the object's memory
address.)

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

link|improve this answer
6  
"id" is removed as a builtin from Python 3.0 and has been moved to a module in the standard library. So this advice will no longer be true once people are using 3.0 – Eli Courtwright Sep 17 '08 at 13:26
1  
OK, for 'id' you're right, but the "in general..." comment still applies, don't you think? – Kevin Little Sep 19 '08 at 17:55
2  
I would avoid it for module globals certainly. For variables restricted to local scope, so you can see the same function isn't ever going to need to use the builtin, it's not something I'd worry about. – bobince Feb 2 '09 at 17:13
feedback

id is a built-in function that gives the memory address of an object. If you name one of your functions id, you will have to say __builtins__.id to get the original. Renaming id globally is confusing in anything but a small script.

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:

def numbered(filename):
  file = open(filename)
  for i,input in enumerate(file):
    print "%s:\t%s" % (i,input)
  file.close()

Some built-ins with tempting names:

  • id
  • file
  • list
  • map
  • all, any
  • complex
  • dir
  • input
  • slice
  • buffer
link|improve this answer
feedback

I might say something unpopular here: 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 a tight and well-written function, where it's clear that id doesn't mean the built-in function.

link|improve this answer
2  
I would still avoid it if at all possible though. Even if for no other reason than to not hear coworkers complain. :-) – Jason Baker Feb 2 '09 at 16:29
feedback

Because it's the name of a builtin function.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Because id is a built in function

link|improve this answer
feedback

'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.

>>>id(1)

9787760

>>>x = 1

>>>id(x)

9787760

link|improve this answer
1  
note that you can name a class attribute or method 'id', that won't touch the built in function. – Toni Ruža Sep 16 '08 at 21:59
feedback

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.

link|improve this answer
feedback

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 a tight and well-written function, whre it's clear that id doesn't mean the built-in function.

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:

Explicit is better than implicit.

See the rest by running: import this

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.