Dapatkan faktorial nomor di Python

fac=1
num=6
for i in range(6,0,-1):
   fac=fac*i
   
print(fac)
Wrong Worm