Posts by Felipe Cardozo • 3 points
1 post
-
0
votes1
answer2683
viewsQ: How to factor n! or ! n?
How to factor a number? n! or ! n Example: Let’s take x = 5 x = input('Digite um número inteiro: ') i = 1 while i <= x: for i in range(x): i = i + 1 a = [] a.append(i) print(a) break Since the…