我在dynamodb中有一个表格,看起来像这样
{"category": "geographie",
"words": [
{
"hilfestellung": [
"Hauptstadt von Belgien",
"Die Schokolade ist berühmt"
],
"user": [
"useridxyz"
],
"word": "brüssel"
},
{
"hilfestellung": [
"Hauptstadt von Deutschland",
"Die Fußballmannschaft heisst Hertha BSC"
],
"user": [],
"word": "berlin"
}
]
}
如何在列表user
中附加新的userId,其中word
等于使用python和boto3的brüssel?我发现了如何在boto3中添加新的list_item,但找不到如何在列表的列表中添加项目。