I'm trying to make a python calculator that takes a factorial of a number, adds it to a list, then does it for the number below it, again and again all the way down to zero. I think I have the code right for the calculation but I cant get it to add to the list
I'm not sure if I should be using yield, or append to add the int to the list. I am very new to coding and I made this completely on my own so maybe use more basic wording
num1 = int(input("enter number to be factorialized "))
numf = 1
t = num1
c=5
for i in range(c):
for i in range(t):
numf *= (num1)
num1 -= 1
factoriallist.append(numf)
t -= 1
print(resulter)
resulter = list(factoriallist(numf))
factoriallist()'''