📜  如何在 python 代码示例中对集合进行切片

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

代码示例1
set = {"a", "b", "c"}
list = []
for x in set:
  list.append(x)
  
list[1]