get the factorial of a number on python

Solutions on MaxInterview for get the factorial of a number on python by the best coders in the world

showing results for - "get the factorial of a number on python"
Nikki
26 Nov 2017
1fac=1
2num=6
3for i in range(6,0,-1):
4   fac=fac*i
5   
6print(fac)
similar questions
queries leading to this page
get the factorial of a number on python