收起
[](
```python TS = ["HELLO",3.5] TS.append(2) #第一题 del(TS[0]) #第二题 print(TS) #第三题 #第三题的返回内容是: [3.5, 2]
```)
报告相同问题?