📜  循环遍历元组列表 python 代码示例

📅  最后修改于: 2022-03-11 14:46:03.384000             🧑  作者: Mango

代码示例2
coordinates = [(0,0),(0,3),(1,0),(1,2),(1,3)]

for (i,j) in coordinates:
    print i,j