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.

I want to assign key to dict without value. So i want to assign date to the dict

here my current code

desc_date = {}

date = ' '.join(line_of_list[0:2])
if desc_date.has_key(date):
    # Not sure how to assign date to desc_date now
share|improve this question
What, exactly, do you intend to do with the dict? – Russell Borogove Mar 12 '12 at 22:11
i am going to be putting 2 keys and 1 values to print. – Joanne Perry Mar 12 '12 at 22:22
currenty got this but aint working any help if desc_ip.has_key(date): desc_ip['a'] = 0 desc_ip['b'] = 0 desc_ip['a']+=1 print desc_ip – Joanne Perry Mar 12 '12 at 22:23
You are confused. desc_date starts empty, so has_key will be false, so none of the other code will run. What is the relationship between the date and the 'a' and 'b' keys? What are you trying to do? – Russell Borogove Mar 12 '12 at 22:30
basically what i want to do is find the date which is already done in the code and then i was to assign the date to the dict so dict will look like this then {feb, 8, jan 10} – Joanne Perry Mar 12 '12 at 22:45

2 Answers

Checking for the existence of a key is really simple:

if date in desc_date:
  # Yep, the key exists

You'd have to use a placeholder value if you want to make it "look" empty:

desc_date[date] = None # Or [] if you'll be storing multiple items per key.
share|improve this answer

You can't. Either use a set instead, or use a "fake" value such as None.

share|improve this answer

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.