Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
oorrja
Edit Copy
Star
GitHub Repository:
oorrja/learntosolveit
Path:
blob/master/languages/python/algorithm_fact2.py
1
2
4
0
views
1
import
operator
2
from
functools
import
reduce
3
print
(
reduce
(
operator
.
mul
,
range
(
1
,
10
)
)
)
4
5