note:set集合的添加方法
1、a = set('boy') #a = set(['b', 'o', 'y'])
a.add('python') #a = set(['b', 'o', 'y', 'python']) 当做一个整体加入
2、a = set('boy') #a = set(['b', 'o', 'y'])
a = update('python') #a = set(['b', 'o', 'y', 'p', 'y', 't', 'h', 'o', 'n']) 拆分加入
note:set集合的添加方法
1、a = set('boy') #a = set(['b', 'o', 'y'])
a.add('python') #a = set(['b', 'o', 'y', 'python']) 当做一个整体加入
2、a = set('boy') #a = set(['b', 'o', 'y'])
a = update('python') #a = set(['b', 'o', 'y', 'p', 'y', 't', 'h', 'o', 'n']) 拆分加入
>