最近开始学 python ,以前没怎么接触编程,就大二的时候有学过 vb 。
----------------------------------------------------------------------------------------------------------------------------------------------
def number_generator():
n = 11
while True:
yield n
n = n + 1
def palindrome_check(n):
string = str(n)
return string[0] == string[::-1]
def next_number():
it = number_generator()
while True:
n = next(it)
yield n
it = filter(palindrome_check(n), it)
for a in next_number():
if a < 1000:
print(a)
else:
break
----------------------------------------------------------------------------------------------------------------------------------------------
这是判断回数的代码,但是一直出错
----------------------------------------------------------------------------------------------------------------------------------------------
Traceback (most recent call last):
File "C:/Users/Administrator/AppData/Local/Programs/Python/Python35-32/
HH.py", line 21, in <module>
for a in huishu():
File "C:/Users/Administrator/AppData/Local/Programs/Python/Python35-32/
HH.py", line 16, in huishu
n = next(it)
TypeError: 'bool' object is not callable
----------------------------------------------------------------------------------------------------------------------------------------------请问问题在哪啊(为什么没排版??????)
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/298562
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.