Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. counting_user_per_source = dict()
  2. for entry in entire_csv_file:
  3.     source = entry[source]
  4.     counting_dict[source] = counting_dict.get(source, 0)+1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement