是镜子啊啊啊啊 发表于 2020-10-27 16:03:27

pthon第13讲最后一题

>>> tuple1.__next__()
0
>>> tuple1.__next__()
1
>>> tuple1.__next__()
4
>>> tuple1.__next__()
9
>>> tuple1.__next__()
16
>>> tuple1.__next__()
25
>>> tuple1.__next__()
36
这个我在python里面打了,但是结果显示不出来,正常来说这里面显示的结果应该为多少
求大佬们帮忙解答一下,谢谢

heidern0612 发表于 2020-10-27 16:14:08

迭代下来看你得看你tuple1的内容。

你就简单弄个tuple1的话,推上面是不太好推。

孤妓与酒 发表于 2021-2-23 17:57:39

先定义一个tuple1,然后在IDLE上敲试试
页: [1]
查看完整版本: pthon第13讲最后一题