VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • Python常见工厂函数用法示例(2)

 

3. list(),tuple():生成列表或者元组

1
2
3
4
5
6
>>> l=list('python')
>>> l
['p''y''t''h''o''n']
>>> t=tuple('python')
>>> t
('p''y''t''h''o''n')

 

4. type():查看类型

1
2
3
4
5
6
7
8
9
10
11
12
13
14
>>> type(6)
<type 'int'>
>>> type('python')
<type 'str'>
>>> type(u'love')
<type 'unicode'>
>>> class A():
...   pass
...
>>> a=A()
>>> type(a)
<type 'instance'>
>>> type(A)
<type 'classobj'>

 

5. dict():生成一个字典

1
2
3
4
5
6
7
8
9
10
11
12
13
14
>>> dict()
{}
>>> dict(one=1,two=2)
{'two'2'one'1}
>>> dict(zip(('one','two'),(1,2)))
{'two'2'one'1}
>>> dict([('one',1),('two',2)])
{'two'2'one'1}
>>> dict([['one',1],['two',2]])
{'two'2'one'1}
>>> dict((('one',1),('two',2)))
{'two'2'one'1}
>>> dict((['one',1],['two',2]))
{'two'2'one'1}

相关教程