[转载]Python 元组、列表、字典、文件

python的元组、列表、字典数据类型是很python(there python is a adjective)的数据结构。这些结构都是经过足够优化后的,所以如果使用好的话,在某些area会有很大的益处。

元组

        个人认为就像java的数组,python中的元组有以下特性:

  • 任意对象的有序集合,这条没啥说的,数组的同性;
  • 通过偏移读取;
  • 一旦生成,不可改变;
  • 固定长度,支持嵌套

来例子吧:

python 代码

  1. >>> (0, ‘haha‘, (4j, ‘y‘))
  2. (0, ‘haha‘, (4j, ‘y‘))
  3. >>> t = (1, 3, ‘b‘)
  4. >>> t[2]
  5. ‘b‘
  6. >>> t[3]
  7. Traceback (most recent call last):
  8. File "#41>", line 1, in <module></module>
  9. t[3]
  10. IndexError: tuple index out of range
  11. >>> t[-1]
  12. ‘b‘
  13. >>> t[0:-1]
  14. (1, 3)
  15. >>> t * 2
  16. (1, 3, ‘b‘, 1, 3, ‘b‘)
  17. >>> for x in t:
  18. print x,
  19. 1 3 b
  20. >>> ‘b‘ in t
  21. True
  22. >>> q = t + ((3, ‘abc‘))
  23. >>> q
  24. (1, 3, ‘b‘, 3, ‘abc‘)
  25. >>> for x in (2, (3, ‘a‘)):
  26. print x
  27. 2
  28. (3, ‘a‘)
  29. >>> len(q)
  30. 5
  31. >>> len((2, (3, ‘abc‘)))
  32. 2
  33. >>> (1, 2, 3)[1]
  34. 2
  35. >>> q[1] = ‘d‘
  36. Traceback (most recent call last):
  37. File "#57>", line 1, in <module></module>
  38. q[1] = ‘d‘
  39. TypeError: ‘tuple‘ object does not support item assignment
  40. >>> a = (‘b‘, ‘c‘, q)
  41. >>> 1 in a
  42. False
  43. >>> q in a
  44. True
  45. >>> a
  46. (‘b‘, ‘c‘, (1, 3, ‘b‘, 3, ‘abc‘))
  47. >>> q=‘d‘
  48. >>> a
  49. (‘b‘, ‘c‘, (1, 3, ‘b‘, 3, ‘abc‘))

上面的例子足以说明大部分了,使用元组时最重要的一点是“一旦生成,就不可变了”。

列表

列表就像java里的collection,所具有的特性也要比元组更多,更灵活,其character总结如下:

  • 任意对象的有序集合;
  • 可通过偏移存取,注意,列表中的元素都是可变的,这是不同于元组的;
  • 长度可变,支持嵌套;
  • 还有一些类似java的对象引用机制

由于列表的这些特性,使得列表在实际应用中被广泛使用,下面是一些例子。

1) 首先是基本用法

python 代码

  1. >>> l = [‘a‘, ‘b‘, ‘c‘]
  2. >>> len(l)
  3. 3
  4. >>> l + [‘d‘]
  5. [‘a‘, ‘b‘, ‘c‘, ‘d‘]
  6. >>> l * 2
  7. [‘a‘, ‘b‘, ‘c‘, ‘a‘, ‘b‘, ‘c‘]
  8. >>> for x in l:
  9. print x,
  10. a b c

2) 索引和分片,赋值(单个元素赋值,分片赋值)

python 代码

  1. >>> l = [‘abc‘, ‘def‘, ‘ghi‘, 123]
  2. >>> l[2]
  3. ‘ghi‘
  4. >>> l[-3]
  5. ‘def‘
  6. >>> l[:3]
  7. [‘abc‘, ‘def‘, ‘ghi‘]
  8. >>> l[1] = ‘haha‘
  9. >>> l
  10. [‘abc‘, ‘haha‘, ‘ghi‘, 123]
  11. >>> l[1:] = [‘apple‘, ‘banana‘]
  12. >>> l
  13. [‘abc‘, ‘apple‘, ‘banana‘]
  14. >>> l[2] = [123, 345, 456]
  15. >>> l
  16. [‘abc‘, ‘apple‘, [123, 345, 456]]
  17. >>> l[1:] = [123, 234, 345, 456, 567]
  18. >>> l
  19. [‘abc‘, 123, 234, 345, 456, 567]

3) 添加、排序、删除操作

python 代码

  1. >>> l = [‘abc‘, ‘def‘, ‘ghi‘, 123]
  2. >>> l.append(456)
  3. >>> l
  4. [‘abc‘, ‘def‘, ‘ghi‘, 123, 456]
  5. >>> l.sort()
  6. >>> l
  7. [123, 456, ‘abc‘, ‘def‘, ‘ghi‘]
  8. >>> del l[0]
  9. >>> l
  10. [456, ‘abc‘, ‘def‘, ‘ghi‘]
  11. >>> del l[2:]
  12. >>> l
  13. [456, ‘abc‘]

4)一些有趣的用法(来自论坛 id—咖啡舞者)

去掉列表中每个元素头尾的空格:

python 代码

  1. >>> freshfruit = [‘ banana‘, ‘ loganberry ‘, ‘passion fruit ‘]    
  2. >>> [str.strip() for str in freshfruit]    
  3. [‘banana‘, ‘loganberry‘, ‘passion fruit‘]  

把列表中,大于3的元素,乘以2:

python 代码

  1. >>> vec = [2, 4, 6]    
  2. >>> [2*x for x in vec if x > 3]    
  3. [8, 12]  

把列表1的每一个元素和列表2的每一个元素相乘:

python 代码

  1. >>> lst1 = [2, 4, 6]
  2. >>> lst2 = [4, 3, -9]
  3. >>> [x*y for x in lst1 for y in lst2]
  4. [8, 6, -18, 16, 12, -36, 24, 18, -54]

取获[0-10)的平方:

python 代码

  1. [x**2 for x in range(10)]

字典

python里的字典就像java里的HashMap,以键值对的方式存在并操作,其特点如下

  • 通过键来存取,而非偏移量;
  • 键值对是无序的;
  • 键和值可以是任意对象;
  • 长度可变,任意嵌套;
  • 在字典里,不能再有序列操作,虽然字典在某些方面与列表类似,但不要把列表套在字典上

1) 基本操作

python 代码

  1. >>> table = {‘abc‘:1, ‘def‘:2, ‘ghi‘:3}
  2. >>> table[‘abc‘]
  3. 1
  4. >>> len(table)
  5. 3
  6. >>> table.keys()
  7. [‘abc‘, ‘ghi‘, ‘def‘]
  8. >>> table.values()
  9. [1, 3, 2]
  10. >>> table.has_key(‘def‘)
  11. True
  12. >>> table.items()
  13. [(‘abc‘, 1), (‘ghi‘, 3), (‘def‘, 2)]

2) 修改,删除,添加

python 代码

  1. >>> table = {‘abc‘:1, ‘def‘:2, ‘ghi‘:3}
  2. >>> table[‘ghi‘] = (‘g‘, ‘h‘, ‘i‘)
  3. >>> table
  4. {‘abc‘: 1, ‘ghi‘: (‘g‘, ‘h‘, ‘i‘), ‘def‘: 2}
  5. >>> del table[‘abc‘]
  6. >>> table
  7. {‘ghi‘: (‘g‘, ‘h‘, ‘i‘), ‘def‘: 2}
  8. >>> table[‘xyz‘] = [‘x‘, ‘y‘, ‘z‘]
  9. >>> table
  10. {‘xyz‘: [‘x‘, ‘y‘, ‘z‘], ‘ghi‘: (‘g‘, ‘h‘, ‘i‘), ‘def‘: 2}

在这里需要来一句,对于字典的扩充,只需定义一个新的键值对即可,而对于列表,就只能用append方法或分片赋值。

3)对字典的遍历

python 代码

  1. >>> table = {‘abc‘:1, ‘def‘:2, ‘ghi‘:3}
  2. >>> for key in table.keys():
  3. print key, ‘\t‘, table[key]
  4. abc     1
  5. ghi     3
  6. def     2

文件

与java的File类相比,python的文件类要狭义一些

1) 文件写

python 代码

  1. >>> myfile = open(‘myfile‘, ‘w‘)
  2. >>> myfile.write(‘hello world\n‘)
  3. >>> myfile.close()

python的一个open语句就打开了一个文件(当给定的文件不存在时,会自动建立一个新的文件)。open的第一个参数是文件名,第二个参数是操作模式,所谓操作模式就是你打开一个文件是用来干什么的,是读,还是写(当然操作模式不仅只有读和写)。还有一件事,操作完要记得关。

2) 文件读

python 代码

  1. >>> myfile = open(‘myfile‘, ‘r‘)
  2. >>> myfile.readlinereadline()
  3. ‘hello world\n‘

很是简单,这样两句就顶java一长串的流嵌套,当然,java那样做也是有道理的。

ok,学了不少,说实话,python的core真的没多少,也很简单,难的是何时和如何用python。

转载自:http://yangsq.iteye.com/blog/128508

时间: 2024-10-07 00:32:04

[转载]Python 元组、列表、字典、文件的相关文章

python 元组 列表 字典基础分析:

一.元组 1.元组的定义,创建 tuple = ('apple','banana','grange','orange','anguo','c++') 注:该元组由6个元素组成,元素之间用逗号隔开. tuple = ('apple',) 注:一个元素后面跟一个逗号 2.元组的访问 (1)索引是一对方括号中的数字,索引也称"下标" tuple = ('apple','banana','grange','orange','anguo','c++') print(tuple[1]) print

python 元组和字典中元素作为函数调用参数传递

模式1.  def test1(*args): test3(*args) def test2(**kargs): test3(**kargs) def test3(a, b): print(a,b) test1(1,2) test2(a=1,b=2) 模式2.  def test4(a= ()): test6(*a) def test5(b = {}): test6(**b) def test6(a, b): print(a,b) test4((1, 2)) test5({'a':1,'b':2

Python元组与字典

python字典 概念:字典是另一种可变容器类型,且可存储任意类型对象,如其他容器类型. 字典由键和对应值成对组成.字典也被称作关联数组或哈希表.理解好一一对应的 关系很重要 1. 掌握字典类型 a) 字典的特点 无序: 通过键实现元素存取,故无序 可变:可以通过键进行改变值 异构:支持多种数据类型 嵌套:可以在键值对中的值部分出现字典 b) 定义字典: ii. 方法一:{key1:value1,key2:value2,...} iii. 方法二:dict()内置函数:指定键值 例:d2=dic

python系列(四)python元组与字典

博主QQ:819594300 博客地址:http://zpf666.blog.51cto.com/ 有什么疑问的朋友可以联系博主,博主会帮你们解答,谢谢支持! 本博文目录: 一.元组 | 二.字典 | 三.字典的使用方法 前言:列表非常适合用于存储在程序运行期间可能变化的数据集.列表是可以修改的,这对处理网站的用户列表或游戏中的角色列表至关重要.然而,有时候你需要创建一些列不可修改的元素,元组就可以满足你这样的需求.Python将不能修改的值称为不可变的,而不可变的列表就被称为元组. 正文部分:

python——元组和字典学习笔记

1.count返回值的次数 list=[2,2,2,3,3,3,3,4,4,4] a={} for i in list: if list.count(i)>1: a[i]=list.count(i) print(a) 将具体的某个数的在列表中的次数返回 list=[2,2,2,3,3,3,3,4,4,4] print(list) print(list.count(2)) 2.set 将list中不重复的所有值遍历出来 list=[2,2,2,3,3,3,3,4,4,4] print(list)

python字符串/元组/列表/字典互转

#-*-coding:utf-8-*- #1.字典dict = {'name': 'Zara', 'age': 7, 'class': 'First'} #字典转为字符串,返回:<type 'str'> {'age': 7, 'name': 'Zara', 'class': 'First'}print type(str(dict)), str(dict) #字典可以转为元组,返回:('age', 'name', 'class')print tuple(dict)#字典可以转为元组,返回:(7,

Python之路 day2 字符串/元组/列表/字典互转

1 #-*-coding:utf-8-*- 2 3 #1.字典 4 dict = {'name': 'Zara', 'age': 7, 'class': 'First'} 5 6 #字典转为字符串,返回:<type 'str'> {'age': 7, 'name': 'Zara', 'class': 'First'} 7 print type(str(dict)), str(dict) 8 9 #字典可以转为元组,返回:('age', 'name', 'class') 10 print tup

【转】python字符串/元组/列表/字典互转

#-*-coding:utf-8-*- #1.字典 dict = {'name': 'Zara', 'age': 7, 'class': 'First'} #字典转为字符串,返回:<type 'str'> {'age': 7, 'name': 'Zara', 'class': 'First'} print type(str(dict)), str(dict) #字典可以转为元组,返回:('age', 'name', 'class') print tuple(dict) #字典可以转为元组,返回

python数据类型:序列(字符串,元组,列表,字典)

序列通常有2个特点: 1,可以根据索引取值 2,可以切片操作 字符串,元组,列表,字典,都可以看做是序列类型 我的操作环境:Ubuntu16.04+python2.7 一.字符串类型 >按索引获取,索引从0开始 1 >>> name='ghostwu' 2 >>> name[0] 3 'g' 4 >>> name[1] 5 'h' 6 >>> name[6] 7 'u' 8 >>> >切片操作,第1个冒号