【Python for Everybody】8 List

Programing

Algorithms
A set of rules or steps used to solve a problem
Data Structure
A particular way of organizing data in a computer

A list is a kind of collection

【Python for Everybody】8 List_第1张图片
【Python for Everybody】8 List_第2张图片
和string类似,index都从0开始,可以用[]来索引
在这里插入图片描述

Lists are mutable

【Python for Everybody】8 List_第3张图片

The lenth of a list

【Python for Everybody】8 List_第4张图片

range function

【Python for Everybody】8 List_第5张图片

friends = ['Joseph', 'Glenn', 'Sally']
for i in range(len(friends)):
	friend = friends[i]
	print('Happy New Year, ', friend, "!")
'''
>>>
Happy New Year, Joseph! 
Happy New Year, Glenn! 
Happy New Year, Sally! 
'''

Concatenating lists using +

【Python for Everybody】8 List_第6张图片

Slicing lists using :

【Python for Everybody】8 List_第7张图片

List method

list.append() 在list 末尾增加一个元素
list.insert(n,‘4’) 在指定位置添加元素,如果指定的下标不存在,那么就是在末尾添加
list1.extend(list2) 合并两个list
list.pop() 删最后一个元素,有返回值
list.pop(n)指定下标,删除指定的元素
list.remove(xx) 删除list 里面的一个元素,有多个相同的元素,删除第一个,无返回值
list.reverse()将列表反转
list.sort()排序,默认升序
list.sort(reverse=True) 降序排列

Building a list from scrach

用[]或list()创建constructor form(空列表)
【Python for Everybody】8 List_第8张图片
直接.append()就可以了,不需要用赋值语句

Is something in a list?

【Python for Everybody】8 List_第9张图片

Build-in function and lists

len()
max()
min()
sum()
【Python for Everybody】8 List_第10张图片
两种方法都可以计算均值,但是用list方法,由于会将数据储存下来所以会占用更多的内存

Strings and Lists

string.split()会生成一个list
split strings into a list of words
【Python for Everybody】8 List_第11张图片
【Python for Everybody】8 List_第12张图片

the double split pattern
在split过一次的基础上再次split
【Python for Everybody】8 List_第13张图片

你可能感兴趣的:(Python,For,Everybody,python)