标签: 学习
thumbnail

python学习笔记(1)—初识python

一、处理一个列表常用的几个方法: 1.len() 获得列表中的数据项 2.append()向列表末尾增加一个数据项 3.pop() 从列表末尾删除一个数据项 4.extend()在列……