码迷,mamicode.com
首页 > 编程语言 > 详细

Python-day04 tuple

时间:2017-05-13 12:27:11      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:lis   转换   统计   list   方法   元素   print   pytho   result   

1.正确的写元祖的方法

2.tuple()可以把传入的序列进行转换。---list也是如此。

tu = (11,22,33,44)
print(type(tu))
li = list(tu)
print(type(li))
print(li)

3.count统计元素的数量

tu = (11,22,33,33,55,44,)
result = tu.count(33)
print(result)

Python-day04 tuple

标签:lis   转换   统计   list   方法   元素   print   pytho   result   

原文地址:http://www.cnblogs.com/Bingo0-python/p/6848376.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!