Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

calculating the factorial of a number #17

Open
wants to merge 33 commits into
base: Abhishek
Choose a base branch
from
Open

Conversation

pranshukatyal14
Copy link

n = int(input("n"))
def factorial(n):
f=1
for i in range (1,n+1):
f=f*i
return f

print(factorial(n))

imabhishekkumar and others added 12 commits October 11, 2019 16:35

Verified

This commit was signed with the committer’s verified signature.
seijikun Markus Ebner

Verified

This commit was signed with the committer’s verified signature.
seijikun Markus Ebner
pandas required!
@pranshukatyal14
Copy link
Author

this is a program to find the factorial of a number

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

10 participants