从django数组中获取特定值

时间:2013-05-14 12:10:24

标签: python django

我应用此代码从表中获取id。

        getItemid=cursor.execute("Select id from shop_carthistory where order_id =%s",[order.order_number])
    row=cursor.fetchall()
    context = {order_id": row }


{{order_id}} gives => ((37L,),) 

我只需要37个

1 个答案:

答案 0 :(得分:1)

你有一个元组,其中一个元素是一个元素的元组:

In [35]: a = ((37,),)

In [36]: a
Out[36]: ((37,),)

In [37]: a[0]
Out[37]: (37,)

In [38]: a[0][0]
Out[38]: 37