Menu
首页
搜索
SpringBoot
Vue
Vant
Python
Android
Harmony
InnoDB
sety
关注
发信
关注(28)
粉丝(399)
动态
文章
图片
python 集合并集
#Union
setx = set(["green", "blue"])
sety = set(["blue", "yellow"])
seta = setx | sety
print(seta)
05-11 17:25