Skip to content

Instantly share code, notes, and snippets.

View Bollegala's full-sized avatar

Danushka Bollegala Bollegala

View GitHub Profile
@Bollegala
Bollegala / python-tips.py
Last active August 29, 2015 14:12
Some handy tricks/tips in Python.
"""
Here are some useful tips/tricks in Python.
Credit: https://gist.github.com/neubig
"""
# To assign unique inter ids to words do the following.
from collections import defaultdict
wids = defaultdict(lambda: len(wids))