以下关于Python自带数据结构的运算结果中正确的是哪一项?( )
- A、l=[1,2,3,4,5]del l[2:4]则运算之后1为[1,2,3]
- B、basket=['apple','banana','apple','orange']fruit=set(basket)len(fruit) 的结果是5
- C、basket=['apple','banana','apple','orange','melo']fruit=set(basket)len(fruit) 的运算结果是3
- D、1=[2,1,3,5,4]remove(3)sort()则运算之后1为[1,2,4,5]