comment trancher un ensemble en python
set = {"a", "b", "c"}
list = []
for x in set:
list.append(x)
list[1]
Gentle Gharial
set = {"a", "b", "c"}
list = []
for x in set:
list.append(x)
list[1]