1. 程式人生 > 其它 >python之set和sring的互相轉換

python之set和sring的互相轉換

技術標籤:pythonpython

使用repr和eval:

>>> s = set([1,2,3])
>>> strs = repr(s)
>>> strs
'set([1, 2, 3])'
>>> eval(strs)
set([1, 2, 3])