pthon第13讲最后一题
>>> tuple1.__next__()0
>>> tuple1.__next__()
1
>>> tuple1.__next__()
4
>>> tuple1.__next__()
9
>>> tuple1.__next__()
16
>>> tuple1.__next__()
25
>>> tuple1.__next__()
36
这个我在python里面打了,但是结果显示不出来,正常来说这里面显示的结果应该为多少
求大佬们帮忙解答一下,谢谢 迭代下来看你得看你tuple1的内容。
你就简单弄个tuple1的话,推上面是不太好推。
先定义一个tuple1,然后在IDLE上敲试试
页:
[1]