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

Day 1 | Question 2 | Python 3 Solution #154

Open
arya-io opened this issue Nov 28, 2024 · 0 comments
Open

Day 1 | Question 2 | Python 3 Solution #154

arya-io opened this issue Nov 28, 2024 · 0 comments

Comments

@arya-io
Copy link

arya-io commented Nov 28, 2024

image

Need to remove semicolon from the line fact = fact * i;

Final Code:

n = int(input()) #input() function takes input as string type
                 #int() converts it to integer type

fact = 1
i = 1
while i <= n:
    `fact = fact * i
    i = i + 1
print(fact)
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

No branches or pull requests

1 participant