python新建一个集合,并赋值多组坐标,并通过索引使用坐标
时间: 2023-05-17 16:05:44 浏览: 86
python中的集合 (set) 的创建和使用
可以使用以下代码新建一个集合,并赋值多组坐标:
```
coordinates = {(1, 2), (3, 4), (5, 6)}
```
然后,可以通过索引使用坐标,例如:
```
print(coordinates[0]) # 输出 (1, 2)
print(coordinates[1]) # 输出 (3, 4)
print(coordinates[2]) # 输出 (5, 6)
```
注意,集合是无序的,因此无法通过索引访问特定的元素。如果需要按照特定顺序访问元素,可以将集合转换为列表。
阅读全文