python中的字符串,列表(list),元组,字典(Dictionary)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的字符串,列表(list),元组,字典(Dictionary)相关的知识,希望对你有一定的参考价值。

http://www.runoob.com/python/python-tutorial.html

字符串
var1 = ‘Hello World!‘


列表(list)
list1 = [‘physics‘, ‘chemistry‘, 1997, 2000];

元组
tup1 = (‘physics‘, ‘chemistry‘, 1997, 2000);

字典(Dictionary)
d = {key1 : value1, key2 : value2 }

以上是关于python中的字符串,列表(list),元组,字典(Dictionary)的主要内容,如果未能解决你的问题,请参考以下文章

python中的lambdamapreducefilter

列表和元组

Python数据类型:序列(列表list元组tuple字符串str)

python中数据类型包括

Python中的列表和元组

python基本操作之列表,元组,string字符串