To implement trie from dict in python, first I try to understand other\'s code:
class Trie: def __init__(self): self.t = {} def insert(self, w