python中创建列表、元组、字符串、字典

2021-03-01 07:28

阅读:727

标签:rgb   字典   pre   col   rgba   字符串   lis   列表   tuple   

 

1、

>>> a = ["aaa","bbb","ccc"]  ## 列表,中括号,逗号
>>> type(a)
class list>
>>> b = ("aaa","bbb","ccc")   ## 元组,小括号,逗号
>>> type(b)
class tuple>
>>> c = "aaabbbccc"       ## 字符串,引号
>>> type(c)
class str>
>>> d = {"a":"aaa","b":"bbb","c":"ccc"}   ## 字典,大括号,冒号,逗号 ,键值对(当普通索引不好用时用字典)
>>> type(d)
class dict>

 

python中创建列表、元组、字符串、字典

标签:rgb   字典   pre   col   rgba   字符串   lis   列表   tuple   

原文地址:https://www.cnblogs.com/liujiaxin2018/p/14449130.html


评论


亲,登录后才可以留言!