常用数据类型:
整数,浮点数(小数),字符串,布尔值(true false)
转义字符:\n 换行, \\导入路径常用, \'单引号\' \"双引号\" 识别单双引号
数组:
数组的定义:有序的集合,可以增删改查其中的元素
如: student=['8','annery','gire','sing','18'] print(student)
访问数组元素:用索引来访问list中每一个位置的元素,索引从0开始
如:student=['8','annery','gire','sing','18'] print(student)
print (student[0]) 访问第一个元素
print(student[-1]) 访问最后一个元素
数组元素的增加删除修改
#增加
student.append('665320') #末尾添加
student.insert(5,'five') #在指定位置添加
#删除
student.pop() #删除末尾元素
student.pop(3) #删除指定元素
#修改
student[2]='two' #修改