前言

这节课我们继续谈一下Python列表一些知识

知识点

Python常用操作符

  • 比较操作符
>>> list1 = [123]
>>> list2 = [234]
>>> list1 > list2
False >>> list1 = [1]
>>> list2 = ['b']
>>> list1 > list2
Traceback (most recent call last):
File "<pyshell#9>", line 1, in <module>
list1 > list2
TypeError: '>' not supported between instances of 'int' and 'str'
>>> list2 = [3,'b']
>>> list1 > list2
False 我们发现列表还会比较大小,那如果有两个元素的列表,或者多个元素的列表,怎么比较呢?
>>> list1 = [123,456]
>>> list2 = [234,123]
>>>
>>> list1 > list2
False
>>>
当有多个元素时,默认是从索引位置0元素开始比较,不用考虑后面的元素 字符串比较就是ASCII码大小
>>> list1 = ['a']
>>> list2 = ['b']
>>> list1 > list2
False
>>> list3 = ['B']
>>> list2 > list3
True
>>> list1 > list2
False
>>> list1 > list3
True
>>> list4 = ['A']
>>> list4 > list3
False
  • 逻辑操作符
>>> list1 = [123,456]
>>> list2 = [234,123]
>>> list3 = [123,456]
>>> (list1 < list2) and (list1 == list2)
False
>>> (list1 < list2) and (list1 == list3)
True
>>>
  • 连接操作符
>>> list4 = list1 + list2
>>> list4
[123, 456, 234, 123] >>> list1 + '小甲鱼'
Traceback (most recent call last):
File "<pyshell#9>", line 1, in <module>
list1 + '小甲鱼'
TypeError: can only concatenate list (not "str") to list + 号两边 数据类型必须一致。
  • 重复操作符
>>> list3
[123, 456]
>>> list3 * 3
[123, 456, 123, 456, 123, 456]
>>> list3 *= 3
>>> list3
[123, 456, 123, 456, 123, 456]
>>> list3 *= 5
>>> list3
[123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456]

成员关系操作符

>>> 123 in list3
True
>>> '小甲鱼' not in list3
True
>>> 123 not in list3
False >>> list5 = [123,['小甲鱼','牡丹'],456]
>>>
>>>
>>> list5
[123, ['小甲鱼', '牡丹'], 456]
>>> '小甲鱼' in list5
False
>>> '小甲鱼' in list5[1]
True
>>> list5[1][1]
'牡丹'

列表的一些其他方法

>>> dir(list)
[...,'append', 'clear', 'copy', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort']

count

>>> list3
[123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456] >>> list3.count(123)
15

index

>>> a = [1,2,3,4,5,6,7,'a','v',1,3]
>>> a.index(1)
0
>>> a.index(1,5,10)
9

reverse

>>> list3.reverse()
>>> list3
[456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123, 456, 123]

sort

>>> list3.sort()
>>> list3
[123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 456, 456, 456, 456, 456, 456, 456, 456, 456, 456, 456, 456, 456, 456, 456] >>> list6 = [4,2,5,1,9,23,32,0]
>>> list6.sort()
>>> list6
[0, 1, 2, 4, 5, 9, 23, 32]
>>> list6 = [4,2,5,1,9,23,32,0]
SyntaxError: unexpected indent
>>> list6 = [4,2,5,1,9,23,32,0]
>>> (list6.sort()).reverse()
Traceback (most recent call last):
File "<pyshell#54>", line 1, in <module>
(list6.sort()).reverse()
AttributeError: 'NoneType' object has no attribute 'reverse' >>> list6 = list6.sort()
>>> list6
>>> list6 = [4,2,5,1,9,23,32,0] >>> list6.sort()
>>> list6
[0, 1, 2, 4, 5, 9, 23, 32]
>>> list6.reverse()
>>> list6
[32, 23, 9, 5, 4, 2, 1, 0] >>> list6 = [4,2,5,1,9,23,32,0]
>>>
>>>
>>> list6.sort(reverse=True)
>>> list6
[32, 23, 9, 5, 4, 2, 1, 0]

课后作业

测试题

  • 如果不上机操作,你觉得会打印什么内容?
>>> old = [1, 2, 3, 4, 5]
>>> new = old
>>> old = [6]
>>> print(new) 结果:
[1,2,3,4,5]
  • 请问如何将下边的列表中的小甲鱼修改为小鱿鱼?
list1 = [1, [1, 2, ['小甲鱼']], 3, 5, 8, 13, 18]

方法:
>>> list1[1][2][0] = '小鱿鱼'
>>> list1
[1, [1, 2, ['小鱿鱼']], 3, 5, 8, 13, 18]

如果想修改成['小甲鱼','小鱿鱼'],可以这样 :

>>> list1[1][2] = ['小甲鱼','小鱿鱼']
>>> list1
[1, [1, 2, ['小甲鱼', '小鱿鱼']], 3, 5, 8, 13, 18]
>>>
  • 要对一个列表进行顺序排序,请问使用什么方法?

    列表名.sort()
  • 要对一个列表进行逆序排序,请问使用什么方法?

    列表名.sort(reverse=True)

    或者

    列表名.sort()

    列表名.reverse()
  • 列表还有两个内置方法没给大家介绍,不过聪明的你应该可以自己摸索使用的门道吧:copy()clear()
copy()方法跟使用切片拷贝是一样的

>>> list1 = [1,5,89,2,6,21,6,5,4]
>>> list2 = list1.copy()
>>> list2
[1, 5, 89, 2, 6, 21, 6, 5, 4]
>>>
>>> list1.sort() >>> list1
[1, 2, 4, 5, 5, 6, 6, 21, 89]
>>> list2
[1, 5, 89, 2, 6, 21, 6, 5, 4]
>>> clear()方法用于清空列表的元素,但要注意,清空后列表仍然存在,只是变成一个空列表。
>>> list1.clear()
>>> list1
[]
>>> list2
[1, 5, 89, 2, 6, 21, 6, 5, 4]
>>> list2.clear(1)
Traceback (most recent call last):
File "<pyshell#15>", line 1, in <module>
list2.clear(1)
TypeError: clear() takes no arguments (1 given)
  • 你有听说过列表推导式或列表解析吗?
>>> [ i*i for i in range(10) ]

输出内容:
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
打印了0到9各个数的平方
列表推导式(List comprehensions)也叫列表解析,灵感取自函数式编程语言Haskell。它是一个非常有用和灵活的工具,可以用来动态的创建列表,语法如: [有关A的表达式for A in B] 例如:
>>> list1 = [x**2 for x in range(10)]
>>> list1
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81] 相当于
list1 = []
for x in range(10):
list1.append(x**2)

问题:请先在IDLE中获得下边列表的结果,并按照上方例子把列表推导式还原出来。

>>> list1 = [(x, y) for x in range(10) for y in range(10) if x%2==0 if y%2!=0]

输出结果:

>>> list1
[(0, 1), (0, 3), (0, 5), (0, 7), (0, 9), (2, 1), (2, 3), (2, 5), (2, 7), (2, 9), (4, 1), (4, 3), (4, 5), (4, 7), (4, 9), (6, 1), (6, 3), (6, 5), (6, 7), (6, 9), (8, 1), (8, 3), (8, 5), (8, 7), (8, 9)]
>>> list1= []
for x in range(10):
for y in range(10):
if x%2 ==0 and y%2 !=0:
list1.append((x,y))
print(list1)
================== RESTART: C:/Users/ThinkPad/Desktop/5.py ==================
[(0, 1), (0, 3), (0, 5), (0, 7), (0, 9), (2, 1), (2, 3), (2, 5), (2, 7), (2, 9), (4, 1), (4, 3), (4, 5), (4, 7), (4, 9), (6, 1), (6, 3), (6, 5), (6, 7), (6, 9), (8, 1), (8, 3), (8, 5), (8, 7), (8, 9)]
  • 活学活用:请使用列表推导式补充被小甲鱼不小心涂掉的部分

list1 = ['1.just do it','2.一切皆有可能','3.让编程改变世界','4.Impossible is Nothing']
list2 = ['4.阿迪达斯','2.李宁','3.鱼c工作室','1.耐克']
list3 = [name + ':' + slogan[2:] for slogan in list1 for name in list2 if slogan[0] == name[0]] >>> list3
['1.耐克:just do it', '2.李宁:一切皆有可能', '3.鱼c工作室:让编程改变世界', '4.阿迪达斯:Impossible is Nothing'] >>> for each in list3:
print(each) 1.耐克:just do it
2.李宁:一切皆有可能
3.鱼c工作室:让编程改变世界
4.阿迪达斯:Impossible is Nothing list1 = ['1.just do it','2.一切皆有可能','3.让编程改变世界','4.Impossible is Nothing']
list2 = ['4.阿迪达斯','2.李宁','3.鱼c工作室','1.耐克']
list3 = []
for slogan in list1:
for name in list2:
if slogan[0] == name[0]:
list3.append((name + ':'+ slogan[2:]))
for each in list3:
print(each) ================== RESTART: C:/Users/ThinkPad/Desktop/5.py ==================
1.耐克:just do it
2.李宁:一切皆有可能
3.鱼c工作室:让编程改变世界
4.阿迪达斯:Impossible is Nothing
>>>

零基础入门学习Python(12)--列表:一个打了激素的数组(3)的更多相关文章

  1. 《零基础入门学习Python》【第一版】视频课后答案第001讲

    测试题答案: 0. Python 是什么类型的语言? Python是脚本语言 脚本语言(Scripting language)是电脑编程语言,因此也能让开发者藉以编写出让电脑听命行事的程序.以简单的方 ...

  2. 零基础入门学习Python(1)--我和Python的第一次亲密接触

    前言 最近在学习Python编程语言,于是乎就在网上找资源.其中小甲鱼<零基础入门学习Python>试听了几节课,感觉还挺不错,里面的视频都是免费下载,小甲鱼讲话也挺幽默风趣的,所以呢,就 ...

  3. 【Python教程】《零基础入门学习Python》(小甲鱼)

    [Python教程]<零基础入门学习Python>(小甲鱼) 讲解通俗易懂,诙谐. 哈哈哈. https://www.bilibili.com/video/av27789609

  4. 学习参考《零基础入门学习Python》电子书PDF+笔记+课后题及答案

    国内编写的关于python入门的书,初学者可以看看. 参考: <零基础入门学习Python>电子书PDF+笔记+课后题及答案 Python3入门必备; 小甲鱼手把手教授Python; 包含 ...

  5. 学习《零基础入门学习Python》电子书PDF+笔记+课后题及答案

    初学python入门建议学习<零基础入门学习Python>.适合新手入门,很简单很易懂.前一半将语法,后一半讲了实际的应用. Python3入门必备,小甲鱼手把手教授Python,包含电子 ...

  6. 零基础入门学习Python(11)--列表:一个打了激素的数组(2)

    前言 上节课我们介绍一个打了激素的数组,叫做列表.列表我们比作一个大仓库,你所能够具现化的东西,都可以往里面扔,它包罗万象.另外还介绍了三个往列表添加元素的方法,分别是: append(),exten ...

  7. 零基础入门学习Python(10)--列表:一个打了激素的数组

    前言 有时候我们需要把一些东西暂时保存起来,因为他们有着一些直接或间接的联系,我们需要把它们放在某个组或者集合中,未来可能用得上. 很多接触过编程的朋友都知道,都接触过数组这个概念,那么数组这个概念事 ...

  8. 零基础入门学习Python(13)--元组:戴上了枷锁的列表

    前言 这节课我们讨论主题是元祖:我们有个小标题戴上了枷锁的列表 我们都知道早在300多年前,孟德斯鸠在变法的时候说过,一切拥有权力的人都容易被滥用权力,这是万古不变的一条经验.但是呢,凡是拥有大权利的 ...

  9. 零基础入门学习Python(19)--函数:我的地盘听我的

    知识点 函数与过程 在许多编程语言中,函数(function)是有返回值的,过程(procedure)是简单.特殊并且没有返回值的.而在Python中,严格来说只有函数没有过程. 例如: >&g ...

  10. 零基础入门学习Python(36)--类和对象:给大家介绍对象

    知识点 Python3 面向对象 Python从设计之初就已经是一门面向对象的语言,正因为如此,在Python中创建一个类和对象是很容易的.本章节我们将详细介绍Python的面向对象编程. 如果你以前 ...

随机推荐

  1. 本地测试出现:Call to undefined function curl_init()

    网上搜索Call to undefined function curl_init(),清一色的以下解决办法: 1.在php.ini中找到extension=php_curl.dll,去掉前面的,php ...

  2. 洛谷 P3254 圆桌问题【最大流】

    s向所有单位连流量为人数的边,所有饭桌向t连流量为饭桌容量的边,每个单位向每个饭桌连容量为1的边表示这个饭桌只能坐这个单位的一个人.跑dinic如果小于总人数则无解,否则对于每个单位for与它相连.满 ...

  3. 11.3NOIP模拟赛

    /* 考虑贪心 把原序列排序后,对于原中位数往后所有比要更改到的值小的都改成它 正确性显然. */ #include<iostream> #include<cstdio> #i ...

  4. 洛谷P3642 [APIO2016]烟火表演

    传送门 题解 fy大佬好强……我根本看不懂…… //minamoto #include<bits/stdc++.h> #define ll long long using namespac ...

  5. react hooks 全面转换攻略(三) 全局存储解决方案

    针对 react hooks 的新版本解决方案 一.redux维持原方案 若想要无缝使用原来的 redux,和其配套的中间件 promise,thunk,saga 等等的话 可以使用 redux-re ...

  6. [ZOJ1140]Courses 课程

    Description 给出课程的总数P(1<=p<100),学生的总数N(1<=N<=300) 每个学生可能选了一门课程,也有可能多门,也有可能没有. 要求选出P个学生来组成 ...

  7. Poj 1743 Musical Theme (后缀数组+二分)

    题目链接: Poj  1743 Musical Theme 题目描述: 给出一串数字(数字区间在[1,88]),要在这串数字中找出一个主题,满足: 1:主题长度大于等于5. 2:主题在文本串中重复出现 ...

  8. 题解报告:hdu 1541 Stars(经典BIT)

    Problem Description Astronomers often examine star maps where stars are represented by points on a p ...

  9. win10系统下使用EDGE浏览器找不到Report Builder 启动图标

    Win10系统下如果要使用Report Builder,可能存在EDGE浏览器或者Chrome找不到ReportBuilder的启动图标的情况,此时,应以管理员权限运行IE浏览器,即可看到图标.

  10. 阿里云服务器安装ss使用

    下载安装服务器版shadowsocks yum install epel-release yum update yum install python-setuptools m2crypto super ...