如何浏览(x,y)
python 中的列表列表?
我在python中有一个这样的数据结构,它是一个列表的列表(x,y)
coords = [
[[490, 185] , [490, 254], [490, 312] ], # 0
[[420, 135] , [492, 234], [491, 313], [325, 352] ], # 1
]
我想浏览列表并获取x, y
每组:
# where count goes from 0 to 1
a_set_coord[] = coords[count]
for (tx, ty) in a_set_coord:
print "tx = " + tx + " ty = " + ty
但我得到错误:
SyntaxError: ("no viable alternative at input ']'"
我怎样才能解决这个问题?