如何将此格式更改为简单列表
[{'qte': 100}, {'qte': 100}, {'qte': 100}, {'qte': 100}, {'qte': 100}, {'qte': 100}, {'qte': 100}, {'qte': 100}, {'qte': 100}, {'qte': 100}, {'qte': 100}, {'qte': 100}, {'qte': 100}, {'qte': 100}, {'qte': 350}, {'qte': 11}]
这是此要求的结果
inst = Produit.objects.values('qte')
print inst
我需要像这种格式
[100,100,100,100,100,100.....]
答案 0 :(得分:5)
您可以使用values_list代替values
flat=True
参数。
inst = Produit.objects.values_list('qte', flat=True)