好久没有动Python了,无聊之余又看了些东西,整理一下,都是比较基础的东西。

在Python中有三种内建的数据结构——列表、元组和字典。

列表(List)

list是处理一组有序项目的数据结构,列表中的元素应该包括在方括号中。在list中,可以添加任意类型的对象,甚至可以是list,实际上list就是一种特殊的对象。

下面是定义和使用列表的一个简单例子:

#This is my shopping list,环境:Python 3.0
shoplist=['apple','mange','carrot','banana']
print ('I hava',+len(shoplist),'items to purchase.')
for item in shoplist:
print(item,end=' ')#以空格分格
print('\nI also have to buy rice.')
shoplist.append('rice')
print('My shopping list is now',shoplist)
shoplist.sort()
print('Sorted shopping list is',shoplist)
#list更多用法,用help(list)就可以看到

元组(Tuple)

元组跟列表有相似之处,但不同的是,元组是不可变的。

下面是一段简单的示例代码:

zoo=('python','elephant','penguin')
print('Number of animals in the zoo is',len(zoo));
new_zoo=('monkey','camel',zoo)
print('number of cages in the new zoo is',len(new_zoo))
print('All animals in new zoo are',new_zoo)
print('Animals brought from old zoo are',new_zoo[2])
print('Last animal brought from old zoo is',new_zoo[2][2])
print('Number of animal is the new zoo is',
len(new_zoo)-1+len(new_zoo[2]))

输出:

Number of animals in the zoo is 3
number of cages in the new zoo is 3
All animals in new zoo are ('monkey', 'camel', ('python', 'elephant', 'penguin'))
Animals brought from old zoo are ('python', 'elephant', 'penguin')
Last animal brought from old zoo is penguin
Number of animal is the new zoo is 5

字典(Dictionary)

一个字典就好比地址簿一样,你可以通过一个人的名字(keys)去得到他或她的详细信息(values)。注意,键值(key)必须唯一,并且键值只能使用不可改变的对象(像字符串),但可以使用可变或不可变的对象作为字典的值。换句话说,应该使用简单的对象作为键值。

键值对在字典中以这样的方式标记:d={key1:value1,key2:value2}。

字典是dict类的对象。

示例代码:

email={'ahan':'jiangjjf@sina.com',
'ayu':'ayuiln@sina.com',
'abin':'abin@sina.com'
}
print("ahan's address is",email['ahan'])
print('\nThere are {0} records in the email\n'.format(len(email)))
for name,email_add in email.items():
print('name {0},email{1}'.format(name,email_add))
#添加键值对
email['xiaohong']='xiaohong@163.com'
if 'xiaohong' in email:#或者email.has_key('xiaohong')
print("\nxiaohong's email is",email['xiaohong'])

输出:

ahan's address is jiangjjf@sina.com
There are 3 records in the email
name ayu,emailayuiln@sina.com
name ahan,emailjiangjjf@sina.com
name abin,emailabin@sina.com
xiaohong's email is

序列(Sequences)

列表、元组、字条串和文件都是序列,那么什么是序列?

序列的两个主要特征是支持索引操作符(indexing operation)和切片操作符(slicing operation)。索引操作即取得序列中的一个特定项目,切片操作即取得序列中的一个切片,即一部分序列。

#这是一段序列的示例代码
#定义一个列表和一个字符串
shoplist=['apple','mango','carrot','banana']
name='swaroop'
#索引操作
print('Item 0 is',shoplist[0])
print('Item 1 is',shoplist[1])
print('Item 2 is',shoplist[2])
print('Item 3 is',shoplist[3])
print('Item -1 is',shoplist[-1])#索引可以是负数,这时要往后往前数,输出为banana
print('Item -2 is',shoplist[-2])#同上,输出为carrot
print('Character 0 is',name[0])
#切片操作,以列表为例,字条串的切片操作与列表类似
print('Item 1 to 3 is',shoplist[1:3])#输出shoplist[1],shoplist[2],不包括shoplist[3]
print('Item 2 to end is',shoplist[2:])#第二个不写就输出到最后一个
print('Item 1 to -1 is',shoplist[1:-1])#输到最后一个之前停下
print('Item start to end is',shoplist[:])#两个都不写都就全部输出
print('Item 1 to 1 is',shoplist[1:1])#输出为空

#记住一个规则:mylist[a:b],得到的是从a开始,到b之前的序列,包含a,但不包含b。

输出:

Item 0 is apple
Item 1 is mango
Item 2 is carrot
Item 3 is banana
Item -1 is banana
Item -2 is carrot
Character 0 is s
Item 1 to 3 is ['mango', 'carrot']
Item 2 to end is ['carrot', 'banana']
Item 1 to -1 is ['mango', 'carrot']
Item start to end is ['apple', 'mango', 'carrot', 'banana']
Item 1 to 1 is []

集合(Set)

#示例代码

set1=set(['brazil','russia','china','japan'])#定义一个集合
print ('set1:',set1)#打印集合
print ('japan' in set1)#判断元素是否在集合中
print ('usa' in set1)
set2=set1.copy()
set2.add('usa')#往集合中添加元素
print (set2)
print (set2.issuperset(set1))#判断set1是否是set2的子集
set2.remove('russia')
print(set1&set2)#求交集
print(set1|set2)#求并集

#更多用法,请使用help(set)自行查看

输出:

set1: {'brazil', 'japan', 'china', 'russia'}
True
False
{'brazil', 'japan', 'china', 'russia', 'usa'}
True
{'brazil', 'japan', 'china'}
{'brazil', 'usa', 'china', 'japan', 'russia'}