Computer Science, asked by dhaara6665, 2 months ago

write a program to fins the dactorial of 9

Answers

Answered by LuckyLao
0

i = 1

num_list = [x for x in range(2, 9+1)]

for number in num_list:

   i *= number

print(f'The factorial of 9 is {i}.')

#Python

Similar questions