📜  python 元组数组 for 循环 - Python 代码示例
📅  最后修改于: 2022-03-11 14:46:29.985000             🧑  作者: Mango
代码示例1
coordinates = [(0,0),(0,3),(1,0),(1,2),(1,3)]
for (i,j) in coordinates:
print i,j