python学习list笔记

List(列表) 是 Python 中使用最频繁的数据类型;

支持字符,数字,字符串甚至可以包含列表(所谓嵌套)

1、定义:

list = [1,3,4,5,‘goog‘,‘well‘,777]

2、从最后一列增加:

list.append("your are good!")

显示:

直接输入:list

显示:[1, 3, 4, 5, ‘goog‘, ‘well‘, 777, ‘your are good!‘]

3、从中间增加一列如:

使用:insert函数:

使用方法如下:

>>> list.insert(8,‘liwen‘)

>>> list

[1, 3, 4, 5, ‘goog‘, ‘liwen‘, ‘well‘, ‘liwen‘, ‘liwen‘, 777, ‘your are good!‘]

4、删除一个:

使用del

如:

>>> list

[1, 3, 4, 5, ‘goog‘, ‘liwen‘, ‘well‘, ‘liwen‘, ‘liwen‘, 777, ‘your are good!‘]

>>> del list[1]  #删除下标为第一个的值

>>> list

[1, 4, 5, ‘goog‘, ‘liwen‘, ‘well‘, ‘liwen‘, ‘liwen‘, 777, ‘your are good!‘]

5、遍历全部值:

list = [1, 4, 5, ‘goog‘, ‘liwen‘, ‘well‘, ‘liwen‘, ‘liwen‘, 777, ‘your are good!‘]

使用for循环遍历:

for i in list:

print i

6、查看list长度使用len函数

list = [1, 4, 5, ‘goog‘, ‘liwen‘, ‘well‘, ‘liwen‘, ‘liwen‘, 777, ‘your are good!‘]

print len(list)

print ‘=====================‘

a = ‘ddddddddddddddddddd‘

print len(a)

10

=====================

19

=====================

7、计算:统计5出现了几次:

c = [1,3,4,5,5,5,5,5,4,5,4,6,9]

ncount = 0

for i in c:

if i == 5:

ncount = ncount + 1

print ncount

结果:

6

==========ncount===========

偶数与奇数:

range(1,101,2) 奇数

[1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23,25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63,65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 95, 97, 99]

range(2,101,2) 偶数

[2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26,28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66,68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100]

补充:

1、

#!/usr/bin/env python

# -*- coding: utf-8 -*-

if __name__ == ‘__main__‘:

list = [‘html‘, ‘js‘, ‘css‘, ‘python‘]

# 方法1

print u‘遍历列表方法1:‘

for i in list:

print (u"序号:%s   值:%s" % (list.index(i) + 1, i))

print u‘\n遍历列表方法2:‘

# 方法2

for i in range(len(list)):

print (u"序号:%s   值:%s" % (i + 1, list[i]))

# 方法3

print u‘\n遍历列表方法3:‘

for i, val in enumerate(list):

print (u"序号:%s   值:%s" % (i + 1, val))

# 方法3

print u‘\n遍历列表方法3 (设置遍历开始初始位置,只改变了起始序号):‘

for i, val in enumerate(list, 2):

print (u"序号:%s   值:%s" % (i + 1, val))

时间: 2024-10-24 23:58:05

python学习list笔记的相关文章

Python学习入门笔记(一):Python文件类型

1.源代码 扩展名:.py,由Python程序解释,不需要编译. --创建hello.py源文件 # cat hello.py  print 'Hello World!' --执行hello.py [[email protected] study]# chmod a+x hello.py  [[email protected] study]# python hello.py  Hello World! [[email protected] study]# ./hello.py  ./hello.

Python学习入门笔记(二):Python运算符

1.算术运算符 "+"加法:3+2=5 "-"减法:3-2=1 "*"乘法:3*2=6 "/"实数除法:3/2=1,3.0/2=1.5 "//"整数除法:5.6//2=2.0 "%"求余数:17%6=5 "**"求幂运算:2**3=8 2.赋值运算符 "="等于:x=3 "+="加等于:x+=2 "-="减等

Python学习手册笔记

之前为了编写一个svm分词的程序而简单学了下Python,觉得Python很好用,想深入并系统学习一下,了解一些机制,因此开始阅读<Python学习手册(第三版)>.如果只是想快速入门,我在这里推荐了几篇文章,有其他语言编程经验的人简单看一看就可以很快地开始编写Python程序了. 黑体表示章节, 下划线表示可以直接在原文对应位置查到的专有技术名词. 原书配套答案请到http://www.hzbook.com/Books/4572.html下载,简单注册即可. 第三章 如何运行程序 impor

Python学习手册笔记——管理属性

管理属性有四种方式:1.__getattr__和__setattr__:把未定义的属性获取和所有的属性赋值指向通用的处理器方法. 2.__getattribute__:把所有的属性获取和赋值指向Python2.6中的新式类和Python 3.0中的所有类的中的一个处理器方法 3.property内置函数,把特定属性访问定位到get和set函数,也叫做特性 4.描述符:把特定属性访问定位到具有任意get和set函数的类的实例 特性 attribute = property(fget, fset,

python学习tkinter笔记(4)

本次主要是学习记录一下如何做输入输出框口,比如制作密码界面之类的. 下面是一个简单的输入框的制作: from tkinter import * root = Tk() e = Entry(root)#输入框 e.pack(padx=20,pady=20) e.delete(0,END) #把窗口从0到最后清空 e.insert(0,"默认文本") # 在0处放入默认文本字样 mainloop() 稍微复杂的框框 from tkinter import * root = Tk() Lab

Python学习手册笔记(1):Python对象类型

在Python中一切皆对象,Python程序可以分解为模块.语句.表达式及对象.如下所示: 1 程序由模块组成 2 模块包含语句 3 语句包含表达式 4 表达式建立并处理对象 内置对象(核心类型): 1)数字: >>> 2+2            #整数加法 4 >>> 1.5*4          #浮点数乘法 6.0 >>> 2**10          #2的10次方 1024 2) 字符串: >>> s='abcdefg'

Python学习Day2笔记(字符编码)

1.字符编码 #ASCII码里只能存英文和特殊字符 不能存中文 存英文占1个字节 8位#中文编码为GBK 操作系统编码也为GBK#为了统一存储中文和英文和其他语言文字出现了万国码Unicode 所有一个字符都占2个字节 16位#英文文档改为Unicode编码大小变大一倍 为解决这种浪费空间问题#出现了Unicode扩展集 Utf-8 为可变长的字符编码 默认英文字符按ASCII码存储 中文按照3个字节存储 编码都要先decode成unicode再转码成目标编码 #获取默认编码import sys

Python学习Day2笔记

1.集合的使用 列表是有序的可包含重复内容的 集合是无序的不可包含重复内容的 1) 集合关系测试 #列表去重list_1=[1,4,5,6,7,8,9,7,5,4,23,2] #有重复数据 list_1=set(list_1)print(list_1,type(list_1)) list_2=set([2,6,0,44,55,3,4])print(list_1,list_2) #交集print(list_1.intersection(list_2))print(list_1 & list_2)

廖雪峰Python学习的笔记

变量 数字不能开头 1name 变量 特殊字符开头不能有 !name变量 不能有空格 name of hello变量不能用关键字当变量名字id()函数用来看变量的内存地址input()获取用户输入内容eval()在已知的变量中找到符合 输入的变量名的变量 缩进: 有冒号开始下面只要是缩进的 那缩进的内容都输入该代码块 只要一个代码快中的空格缩进一样,就可执行while循环 退出的下一行写breakwhile循环 while后面的就是条件,只有为真才做循环,条件为false 则这个循环跳出 cou