猿问
@log例题问题
又哪儿错了...
------------------------------------
正确的:
慕粉3204255
浏览 1409
回答 1
1回答
清波
>>> from functools import reduce >>> def factorial(n): return reduce(lambda x,y: x*y, range(1, n+1)) >>> print factorial(10) ## Python2.x >>> print (factorial(10)) ## Python3.x ## 解释,在Shell 或者 IDLE中写代码时, Python 的代码块写完后, 需要多敲一次回车,直到 “>>> ”符号出现时, ## 再写下面的语句
0
0
0
随时随地看视频
慕课网APP
相关分类
Python
我要回答