Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. if row[1] in workclass_dict_u:
  2. workclass_dict_u[row[1]] += 1
  3. else:
  4. workclass_dict_u[row[1]] = 1
  5.  
  6.  
  7. if row[5] in marital_dict_u:
  8. marital_dict_u[row[5]] += 1
  9. else:
  10. marital_dict_u[row[5]] = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement