关于Python中元组的问题
代码:#!/usr/bin/pythonzoo=('wolf','elephant','penguin')print'Numberofanimalsinthezoois'...
代码:
#!/usr/bin/python
zoo = ('wolf', 'elephant', 'penguin')
print 'Number of animals in the zoo is', len(zoo)
new_zoo = ('monkey', 'dolphin', zoo)
print 'Number of animals in the new zoo is', len(new_zoo)
输出
$ python using_tuple.py
Number of animals in the zoo is 3
Number of animals in the new zoo is 3
问题:
Line2 中 Number of animals in the new zoo is 3 这里有点奇怪, 为什么是3不是5 , 'monkey' + 'dolphin'+ zoo 中的3只动物, 应该是5啊, 为什么是3呢? 展开
#!/usr/bin/python
zoo = ('wolf', 'elephant', 'penguin')
print 'Number of animals in the zoo is', len(zoo)
new_zoo = ('monkey', 'dolphin', zoo)
print 'Number of animals in the new zoo is', len(new_zoo)
输出
$ python using_tuple.py
Number of animals in the zoo is 3
Number of animals in the new zoo is 3
问题:
Line2 中 Number of animals in the new zoo is 3 这里有点奇怪, 为什么是3不是5 , 'monkey' + 'dolphin'+ zoo 中的3只动物, 应该是5啊, 为什么是3呢? 展开
展开全部
new_zoo: ('monkey', 'dolphin', ('wolf', 'elephant', 'penguin'))
"zoo tuple" is the 3rd element of "new_zoo"
"zoo tuple" is the 3rd element of "new_zoo"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
new_zoo: ('monkey', 'dolphin', ('wolf', 'elephant', 'penguin'))
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询