元组

作者:追风剑情 发布于:2017-12-5 18:17 分类:Python

示例

  1. # -*- coding: cp936 -*-
  2. #元组不能修改。
  3. #元组可以在映射中当作键使用,而列表不行。
  4. #元组作为很多内建函数和方法的返回值存在。
  5.  
  6. #创建一个元组
  7. t = 1,2,3
  8. print t
  9. #或者括起来
  10. t = (1,2,3,4)
  11. print t
  12. #创建空元组
  13. t = ()
  14. print t
  15. #创建只包含一个值的元组,以逗号结尾
  16. t = 42,
  17. print t
  18. t = (43,)
  19. print t
  20.  
  21. print '元组乘法'
  22. print 3*(40+2,)
  23.  
  24. print 'tuple函数'
  25. print tuple([1,2,3])
  26. print tuple('abc')
  27. print tuple((1,2,3,4))
  28.  
  29. print '访问元组' #和列表一样
  30. x = 1,2,3
  31. print x[1]
  32. print x[0:2] #元组的分片还是元组

运行测试

1111.png

标签: Python

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号