>>> tuple("hello world")
('h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd')
>>> tuple([1,2,3,4])
(1, 2, 3, 4)
14、type(x)type()可以接收任何东西作为参数――并返回它的数据类型。整型、字符串、列表、字典、元组、函数、类、模块,甚至类型对象都可以作为参数被 type 函数接受。
代码如下:
>>> type(1)
>>> li = []
>>> type(li)
>>> import odbchelper
>>> type(odbchelper)
>>> import types
>>> type(odbchelper) == types.ModuleType
True