下列Python程序的运行结果是( ) def P(x):  ...
发布于 2022-03-03 16:48:56
下列Python程序的运行结果是( )
def P(x): y = reduce(lambda x, y: x * y, map(int, str(x))) return y and not x % y def Q(x): return P(x) and P(x + 1) print sum(Q(x) for x in xrange(2019))
登录后免费查看答案
关注者
0
被浏览
36