我在SQL管理工作室中有一個空表,我想用每個句子的值填充它。該表有3列 - SentId,Word,Count。在列表中的字典中返回值,字典中的整個事物
我的句子具有這樣的結構:
sentence = {‘features’: [{}, {}, {}…] , ‘id’: 1234}
- >要填寫SentId值,我調用SQL「插入到表中的值(3列在這裏提供3個值)」語句,輸入語句[ id'],它返回1234.很簡單。隨着下一步我有問題。
- >要獲取字值和Count列,我要進去 '的特點' 具有這種結構:
‘features’: [ {‘word’:’ hello’, ‘count’: 2}, {‘word’: ’there’, ‘count’:1}, {}, {}…]
我跑這至今:
sentence = {'features': [{'word': 'hello', 'count': 2}, {'word': 'there', 'count':1}] , 'id': 1234}
print(sentence['features'])
#out>> [{'word': 'hello', 'count': 2}, {'word': 'there', 'count': 1}]
所以我需要進入列表中的字典。 這didn`t工作:
print(sentence['features'].get("word"))
非常感謝幫助我。我是編程新手。
句子[「功能」] [0] [「字」] –
唐用-1標記我;反而幫助我。謝謝 – el347
謝謝!!!!我很快會刪除我的愚蠢問題 – el347