python的基本教程

本文介绍了Python的四种基本数据结构——列表、元组、集合和字典,包括它们的特点、操作方式如重构、迭代和相互包含。列表支持修改和合并,元组不可变,集合无序且唯一,字典则包含键值对。此外,文章还展示了这些数据结构之间的交互和操作示例。
摘要由CSDN通过智能技术生成

目录

一、概述

二、特性

三、列表

四、字典


一、概述

Python基本数据结构有四种,分别是列表、元组、集合、字典,这是Python解释器默认的数据结构,可以直接使用,无需像C语言那样需要手搓或像C++那样需要声明STL头文件。

Python的数据结构非常灵活,对数据类型没有限制,即一个数据结构对象中可以包含多个不同数据类型的元素,这是与C/C++有很大区别的,因为C/C++的一个数据结构对象是只能由同种数据类型的元素构成的。

  • 列表:关键字 list,用 [ ] 中括号表示,list数据可以进行随意的修改和重构
  • 元组:关键字 tuple,用 ( ) 小括号表示,tuple数据不可修改,所以元组对象只能初始化赋值或者用其他元组赋值(重构)。
  • 集合:关键字 set,用 { } 花括号表示,set数据可以修改和重构,集合的特性是数据是无序且唯一的,即数据在加入时便进行了去重处理。
  • 字典:关键字 dict,用 { } 花括号表示(集合和字典的关键字符号都是花括号,用空花括号对变量进行初始化时,默认是字典),dict的数据类型一定是 <Key: Value> 键值对,dict数据可以随意更改和重构,字典对象里面包含有Key值列表和Value值列表

   
   
  1. lst1 = list
  2. lst2 = list()
  3. lst3 = []
  4. print( type(lst1), type(lst2), type(lst3))
  5. # <class 'type'> <class 'list'> <class 'list'>
  6. tpl1 = tuple()
  7. tpl2 = ()
  8. print( type(tpl1), type(tpl2))
  9. # <class 'tuple'> <class 'tuple'>
  10. s1 = set()
  11. s2 = {}
  12. s3 = { 1}
  13. print( type(s1), type(s2), type(s3))
  14. # <class 'set'> <class 'dict'> <class 'set'>
  15. dct1 = dict()
  16. dct2 = {}
  17. print( type(dct1), type(dct2))
  18. # <class 'dict'> <class 'dict'>

二、特性

列表、元组、集合、字典都没有数据类型限制,即一个数据结构对象中可以包含多个不同数据类型的元素。

列表、元组、集合、字典都支持重构,即用另一个数据结构对本对象进行赋值,若对方与自身数据结构类型不同,那么本对象的数据结构类型也会发生转换。用相同的值去赋值一个数据结构对象,也会进行重构(值不变,地址改变)。

列表、元组、集合、字典都支持迭代,即可用for循环对本对象进行迭代遍历,对dict对象进行迭代的时候,会默认只遍历Key值列表,我们可以指定Key值列表或Value值列表进行dict对象的迭代遍历。

列表、元组、字典可以相互包含,即一个数据结构对象的元素可以是另一个数据结构对象,而作为元素的数据结构对象中又可以包含其他的数据结构对象,且无类型限制。set对象的元素不能是其他数据结构对象。

列表、元组支持下标访问(随机访问),也只有支持下标访问才能进行切片操纵。可以根据下标获取值,也可以通过 index() 函数根据内容获得下标。

列表支持合并,相同类型的数据结构对象之间可以通过“+”号合并为一个对象,可以自身与自身合并自身与另一对象合并或者两对象合并赋值给第三者


   
   
  1. # 列表、元组、字典可相互包含,集合不能相互包含
  2. lst = [ 1, 2, 3, "hello", [ "hello world", { "name": "张三", "age": 20}]]
  3. tpl = ( 1, 2, 3, "hello", [ "hello world", { "name": "张三", "age": 20}])
  4. s = { 1, 2, 3, "hello"}
  5. dct = {
  6. "list": lst,
  7. "tuple": tpl,
  8. "set": s
  9. }
  10. # 列表、元组可下标访问
  11. print(lst[ 0]) # 1
  12. print(tpl[ 0]) # 1
  13. print( f"{lst.index('hello')}") # 3
  14. print( f"{tpl.index('hello')}") # 3
  15. # 迭代
  16. for i in lst:
  17. print(i, end= ' ')
  18. print()
  19. # 1 2 3 hello ['hello world', {'name': '张三', 'age': 20}]
  20. for i in tpl:
  21. print(i, end= ' ')
  22. print()
  23. # 1 2 3 hello ['hello world', {'name': '张三', 'age': 20}]
  24. for i in s:
  25. print(i, end= ' ')
  26. print()
  27. # 1 2 3 hello
  28. for i in dct:
  29. print(i, end= ' ')
  30. print()
  31. # list tuple set
  32. for i in dct.keys():
  33. print(i, end= ' ')
  34. print()
  35. # list tuple set
  36. for i in dct.values():
  37. print(i, end= ' ')
  38. print()
  39. # [1, 2, 3, 'hello', ['hello world', {'name': '张三', 'age': 20}]] (1, 2, 3, 'hello', ['hello world', {'name': '张三', 'age': 20}]) {1, 2, 3, 'hello'}
  40. lst1 = [s]
  41. print(lst1) # [{1, 2, 3, 'hello'}]
  42. # 列表、集合、字典可合并,元组数值不能修改,故不能合并
  43. lst1 = lst1 + lst1
  44. print(lst1)
  45. # [{1, 2, 3, 'hello'}, {1, 2, 3, 'hello'}]
  46. lst1 = lst + lst1
  47. print(lst1)
  48. # [1, 2, 3, 'hello', ['hello world', {'name': '张三', 'age': 20}], {3, 1, 'hello', 2}, {3, 1, 'hello', 2}]
  49. lst2 = lst + lst
  50. print(lst2)
  51. # [1, 2, 3, 'hello', ['hello world', {'name': '张三', 'age': 20}], 1, 2, 3, 'hello', ['hello world', {'name': '张三', 'age': 20}]]
  52. # 重构
  53. print( f'list_id = {id(lst)}')
  54. print( f'tuple_id = {id(tpl)}')
  55. print( f'set_id = {id(s)}')
  56. print( f'dict_id = {id(dct)}')
  57. print()
  58. lst = [tpl, s]
  59. tpl = (lst)
  60. s = { 1, 2, 3, "hello"} # 相同的值进行重构
  61. dct = {
  62. "key1": lst[ 0],
  63. "key2": tpl[ 0],
  64. }
  65. print( f'list_id = {id(lst)}')
  66. print( f'tuple_id = {id(tpl)}')
  67. print( f'set_id = {id(s)}')
  68. print( f'dict_id = {id(dct)}') # 所有数据结构对象的地址都改变

三、列表

Python中的 list 数据结构与C/C++的STL标准模板库中的 vector / list 容器很相似,相当于它们的结合,即既有C++ vector 的特性,又有C++ list 的特性。

Python中的 list 数据结构对象的元素,同种类型的元素顺序(连续)存储,不同类型的元素存储在不同的空间块。而C++ vector 一定是顺序存储,C++ list 一定是随机存储。


   
   
  1. lst1 = [ 1, 2, - 1, 1.1, - 1.1, "hello", "world", [ 1, 2], 3, 4]
  2. for i in lst1:
  3. print( f'val = {i}, id = {id(i)}')

Python的 list 可以通过 "+" 号进行合并,也可以通过 extend() 函数拓展

切片:根据下标的随机访问,对数据进行选择性提取

通过 in 关键字查找元素,返回值为布尔变量

通过 pop() 函数根据下标删除元素,通过 remove() 函数根据内容删除元素

通过 reserve() 函数逆置,通过 clear() 函数清空

支持自乘运算,即列表自乘一个数,相当于这个用自身拓展几倍


   
   
  1. lst1 = [ 0, 1, 2, 3, 4]
  2. lst2 = [ 5, 6, 7, 8, 9]
  3. # 拓展
  4. lst1.extend(lst2)
  5. print(lst1) # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
  6. # 切片
  7. print(lst1[:]) # 不设置前后区间,即打印全部元素
  8. print(lst1[ 1:]) # 设置左闭区间,从下标为 1 的位置开始打印
  9. print(lst1[: 3]) # 设置右开区间,打印到下标小于 3 的位置
  10. print(lst1[ 1: 5]) # 设置左开右闭区间,打印下标为 [1, 5) 的元素
  11. print(lst1[ 1: 5: 2]) # 设置左开右闭区间并设置步长为 2 进行打印
  12. print(lst1[ 1:: 3]) # 不设置右区间且步长为 3 进行打印
  13. print(lst1[::- 1]) # 设置步长为 -1,即逆序打印
  14. print(lst1[- 1]) # 下标为负数,即从后往前进行下标索引,下标 -1 就是最后一个元素
  15. # 查找
  16. print( 1 in lst1) # True
  17. print(- 1 in lst1) # False
  18. print( 'hello' not in lst1) # True
  19. # 删除
  20. lst1.pop() # pop()默认进行尾删
  21. lst1.pop( 1)
  22. print(lst1) # [0, 2, 3, 4, 5, 6, 7, 8]
  23. lst1.remove( 5)
  24. print(lst1) # [0, 2, 3, 4, 6, 7, 8]

元组、集合很多特性与列表相似,各自有各自的特性元组不可修改集合无序且去重),故在保持各自特性的前提下,列表的部分功能元组和集合不能拥有:

  • 元组和集合都不能合并、拓展和逆置
  • 元组还不能删除,但是元组可以进行自乘运算(重构)
  • 集合不能自乘运算、随机访问和切片

四、字典

字典 dict 与 C++的STL标准模板库的 map 容器相似,数据都是 <Key: Value> 键值对类型,且键值不允许重复。

字典 dict 中默认包含两个列表,即一个Key值列表一个Value值列表,方便进行字典的数据管理


   
   
  1. a = {}
  2. b = dict()
  3. print( type(a), type(b))
  4. a = {
  5. 'id': '0001',
  6. 'name': '张三',
  7. 'age': 20
  8. }
  9. print(a)
  10. print(a[ 'id'])
  11. # 查找key值
  12. print( 'id' in a) # True
  13. print( 'class' in a) # False
  14. a[ 'class'] = 1 # 插入键值对
  15. print(a)
  16. a[ 'class'] = 2 # 修改键值对
  17. print(a)
  18. a.pop( 'id') # 删除键值对
  19. print(a)
  20. print(a.keys()) # 查询键值
  21. print(a.values()) # 查询值
  22. print(a.items()) # 查询键值对
  23. # 遍历
  24. for key in a:
  25. print(key, a[key])
  26. print()
  27. for key, value in a.items():
  28. print(key, value)
  29. # 快速生成Value值一样的字典
  30. c = dict.fromkeys([ 1, 2, 3], "name")
  31. print(c)

ps;本文仅供学习与参考心态发布

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值