python 笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 笔记相关的知识,希望对你有一定的参考价值。
创建列表三种方式:
number = [‘小甲鱼‘,‘小布丁‘,‘黑夜‘,‘意境‘,‘米兔‘]
number
mix = [1,‘小甲鱼‘,3.14,[1,2,3]]
member.append 插入一个值(‘2123‘)
member.extend 插入一组值[(‘123‘,‘233‘)]
member.insert 插入一个自定义位置的值(1,‘小甲鱼‘)
ctrl+L 清屏 windows环境 方法 http://jingyan.baidu.com/article/08b6a591a21e8e14a8092211.html
以上是关于python 笔记的主要内容,如果未能解决你的问题,请参考以下文章