题目:阅读下面程序:
set_01 = {'a', 'c', 'b', 'a'}
set_01.add('d')
print(len(set_01))
运行程序,输出结果是()
A、
5
B、
3
C、
4
D、
2
喵查答案:Cset_01 = {'a', 'c', 'b', 'a'}
set_01.add('d')
print(len(set_01))
运行程序,输出结果是()
题目:阅读下面程序:
set_01 = {'a', 'c', 'b', 'a'}
set_01.add('d')
print(len(set_01))
运行程序,输出结果是()
A、
5
B、
3
C、
4
D、
2
喵查答案:C