Answers for "how to slice a set in python"

0

how to slice a set in python

set = {"a", "b", "c"}
list = []
for x in set:
  list.append(x)
  
list[1]
Posted by: Guest on October-18-2021

Code answers related to "how to slice a set in python"

Python Answers by Framework

Browse Popular Code Answers by Language