>>> doc_title = 'nihao'
>>> url = 'www.nihao.com'
>>> td_matrix = {}
>>> td_matrix[(doc_title, url)] = {}
>>> td_matrix
{('nihao', 'www.nihao.com'): {}}
>>> td_matrix[(doc_title, url)]['good'] = 1
>>> td_matrix
{('nihao', 'www.nihao.com'): {'good': 1}}
>>> td_matrix[(doc_title, url)] = {'good': 1}
>>> td_matrix
{('nihao', 'www.nihao.com'): {'good': 1}}>>> doc_title = 'nihao'
>>> url = 'www.nihao.co