Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the meaning of _ after for in this code?

if tbh.bag:
   n = 0
   for _ in tbh.bag.atom_set():
      n += 1
share|improve this question

2 Answers

up vote 30 down vote accepted

It's just a variable name, and it's conventional in python to use _ for throwaway variables. It just indicates that the loop variable isn't actually used.

share|improve this answer
1  
you mean it doesn't represent the last returned value? – alwbtc May 5 '11 at 5:52
6  
@steve only in a python shell – Gabi Purcaru May 5 '11 at 5:55

_ has 3 main conventional uses in Python:

  1. To hold the result of the last executed statement in an interactive interpreter session. This precedent was set by the standard CPython interpreter, and other interpreters have followed suit
  2. For translation lookup in il8n (imported from the corresponding C conventions, I believe)
  3. As a general purpose "throwaway" variable name to indicate that part of a function result is being deliberately ignored

The latter two purposes can conflict, so it is necessary to avoid using _ as a throwaway variable in any code block that also uses it for il8n translation.

share|improve this answer
2  
Could you explain how it works in a function call, for example: raise forms.ValidationError(_("Please enter a correct username")). I've seen this in Django code, and it's not clear what's going on. – John C May 19 '11 at 13:43
5  
That is usage 2 - by convention, _ is the name used for the function that does internationalisation and localisation string translation lookups. I'm pretty sure it is the C gettext library that established that convention. – ncoghlan May 19 '11 at 16:47
2  
FWIW, I've personally started using __ (a double underscore) as my general purpose throwaway variable to avoid conflicting with either of the first two use cases. – ncoghlan Mar 20 '12 at 6:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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