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
|
I want to assign key to dict without value. So i want to assign date to the dict here my current code
|
||||
|
Checking for the existence of a key is really simple:
You'd have to use a placeholder value if you want to make it "look" empty:
|
|||
|
|
desc_datestarts 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