1. 程式人生 > >python-set

python-set

http move 數字 info class pos blog 存在 集合

集合:

1.集合中的元素不同

2.無序

3.由不可變元素組成:數字,字符串,元祖

技術分享圖片

set.remove 和 set.discard 的區別:

remove()刪除一個元素時,當元素不存在於列表中時。remove報錯

discard()刪除一個元素時,當元素不存在於列表中時。discard不會報錯

python-set