python
未读
Pyhon基础数据结构(列表)【蓝桥杯】
a = [1,2,3,4,5] a.reverse() print("a = ",a) a.reverse() print("a = ",a)# 列表 列表(list)有由一系列按照特定顺序排序的元素组成

