这行带有[0][1]索引的代码有什么用?
What is the use of this line of code with [0][1] index?
我无法找出 name_get()[0][1]
的作用
display_name = product_id.name_get()[0][1]
if product_id.description_sale:
display_name += '\n' + product_id.description_sale
向后分解:[0][1]
表示二维数组的一个元素(一个包含元素也是数组的数组),因此我们可以推断出期望是 name_get()
return 是一个二维数组——我们不能说这些数组中值的类型——python 是动态类型的。
product.name_get()
表示name_get()是乘积class/file.
的method/function
举个例子 - name_get()
可能 return 类似于
[ ["savings account", "current account"], ["credit card", "store card"] ]
所以 name_get()[0][1]
将计算为 "current account"
我无法找出 name_get()[0][1]
的作用display_name = product_id.name_get()[0][1]
if product_id.description_sale:
display_name += '\n' + product_id.description_sale
向后分解:[0][1]
表示二维数组的一个元素(一个包含元素也是数组的数组),因此我们可以推断出期望是 name_get()
return 是一个二维数组——我们不能说这些数组中值的类型——python 是动态类型的。
product.name_get()
表示name_get()是乘积class/file.
举个例子 - name_get()
可能 return 类似于
[ ["savings account", "current account"], ["credit card", "store card"] ]
所以 name_get()[0][1]
将计算为 "current account"