3种Python数据结构,13种创建方法,这个总结,超赞!

Python (3) 2024-05-17 08:12

Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说3种Python数据结构,13种创建方法,这个总结,超赞!,希望能够帮助你!!!。

Python常用的数据结构,有如下几种。但是我们用的最多的,还是字符串、列表、字典这3种。
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第1张
其实学习任何一门编程语言,最基础的就是学习它的数据结构。

拿Python来说,数据结构的概念也是超级重要,不同的数据结构,有着不同的函数,供我们调用。

接下来,我们分别来介绍字符串、列表、字典的创建方法。

字符串的3种创建方式

① 单引号(‘ ’),创建字符串
a = 'I am a student'
print(a)

结果如下:
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第2张

② 双引号(“ ”),创建字符串
b = "I am a teacher"
print(b)

结果如下:
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第3张

③ 续3个单引号或者3个单引号,创建多行字符串
c = ''' I am a student My name is黄伟 I am a teacher My name is陈丽 '''
print(c)

结果如下:
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第4张

列表的5种创建方式

① 用[]创建列表
a = [1,2,3]
print(a)

结果如下:
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第5张

② 用list创建列表
b = list('abc')
print(b)

c = list((1,2,3))
print(c)

d = list({ 
   "aa":1,"bb":3}) #对于字典,生成的是key列表。
print(d)

结果如下:
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第6张

③ 用range创建整数列表
e = list(range(10))
print(e)

结果如下:
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第7张

④ 用列表推导式创建列表
f = [i for i in range(5)]
print(f)

结果如下:
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第8张

⑤ 用list和[]创建空列表
g = list()
print(g)

h = []
print(h)

结果如下:
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第9张

字典的5种创建方式

① 用{}创建字典
a = { 
   'name':'陈丽','age':18,'job':'teacher'}
print(a)

b = { 
   'name':'陈丽','age':18,'job':['teacher','wife']}
print(b)

结果如下:
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第10张

② 用dict创建字典
c = dict(name='张伟',age=19)
print(c)

d = dict([('name','李丽'),('age',18)])
print(d)

结果如下:
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第11张

③ 用zip函数创建字典
x = ['name','age','job']
y = ['陈丽','18','teacher']
e = dict(zip(x,y))
print(e)

结果如下:
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第12张

④ 用{},dict创建空字典
f = { 
   }
print(f)

g = dict()
print(g)

结果如下:
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第13张

⑤ 用fromkeys创建’值为空’的字典
h =dict.fromkeys(['name','age','job'])
print(h)

结果如下:
3种Python数据结构,13种创建方法,这个总结,超赞!_https://bianchenghao6.com/blog_Python_第14张

今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

下一篇

已是最新文章

发表回复