RaspiBerry Blog
作者:
在
myset ={1,2,3,4,5} myset.discard(3) print(myset) {1, 2, 4, 5} myset.discard(2) print(myset) {1, 4, 5}