hyytaojunming 发表于 2017-4-21 13:12:15

python list tuple

  python 有2个比较重要的内置数据类型:list和tuple

想要了解list相关知识点的话,可以看下python列表操作方法。

而需要看tuple相关的知识点可以看下:python 元组

有可能有些同学需要查看的是2个内置方法,list和tuple.

list:方法是把对象转化为列表类型。

tuple:方法则是把对象转化为元组类型。

a = 'fwefesfe'

print list(a)
['f', 'w', 'e', 'f', 'e', 's', 'f', 'e']

print tuple(a)
('f', 'w', 'e', 'f', 'e', 's', 'f', 'e')
页: [1]
查看完整版本: python list tuple