> python
Python 3.6.5 (default, May 11 2018, 04:00:52)
[GCC 8.1.0] on linux
Type 'help', 'copyright', 'credits' or 'license' for more information.
>>> 5 % 2
1
赞0踩0评论0
回答了问题2019-07-17
python怎么算阶乘
>>> import math
>>> math.factorial(5)
120
赞0踩0评论0
回答了问题2019-07-17
python怎么得出余数
> python
Python 3.6.5 (default, May 11 2018, 04:00:52)
[GCC 8.1.0] on linux
Type 'help', 'copyright', 'credits' or 'license' for more information.
>>> 5 % 2
1