摘要: 解决办法: 阅读全文
posted @ 2019-10-22 09:31 维特布朗尼 阅读(2729) 评论(0) 推荐(0)
摘要: 1 #增删改查 2 new_student = ['hanm','yangll','jiajj','liuz'] 3 #查 4 print(new_student[0]) 5 6 # 增加 7 new_student.append('hujc') #在列表末尾增加 8 new_student.insert(1,'xiaohei')#指定位置增加 9 print(new_stu... 阅读全文
posted @ 2019-10-22 00:05 维特布朗尼 阅读(109) 评论(0) 推荐(0)