头像

奔跑中的小胖

帅气的我简直无法用语言描述!

30_Python列表的翻转和排序

一、reverse()表明翻转列表中的元素,不会生成新列表list1 = [2343, 55, 4, 345, 676, 768] list1.reverse() print(list1) # [76...
头像5小时前
000