分配变量坐标 - Python

时间:2017-09-18 12:15:42

标签: python-3.x variables

我有一个索引为K = [12,13,14,15,16,17]的列表。 我需要以变量K的形式为(x1,y1),(x2,y2)...中的每个索引分配一个坐标。 最后,点(x1,y1)应该是12,点(x2,y2)应该是13等。

有人可以给我一个想法吗?

1 个答案:

答案 0 :(得分:-1)

如果你想创建一个坐标列表,你可以创建一个包含元组的列表。

像这样:

# initialize list of tuples with 10 list items to (0,0)
my_list = [(0,0) for x in range(0, 10)] 

# set the second list item to (3, 2)
my_list[1] = (3, 2)

# print the y coordinate of the second item
print(my_list[1][1])