有如下 python 程序段, 下列说法错误的是? ( )
s={1, 2, 3, 4, 5}
print(s)
s.clear()
“{1, 2} +{5, 6} ” 是错误的语句
s 数据类型是集合
此程序段的作用是输出原始集合 s 和移除数据之后的集合 s
s 数据类型是字典