Python Forum
Want to print each iteration of factorial program
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Want to print each iteration of factorial program
#2
I would use something like,

def _factorial_sample_(n):
    if n == 0 or n == 1:
        return 1
    else:
        #result = n * _factorial_sample_(n-1)
        print("\nGiven number to find factorial is ", n ,"\n")
        i=n
        fact=1
        while(i>0):
            print( " ",fact," * ",i)
            fact=fact*i
            print("temp_computed_result= ",fact)
            i -= 1
        print("\nfactorial of ",n," is : ", fact)
        return fact
  
  
print(_factorial_sample_(5))
Output:
python 6jan.py Given number to find factorial is 5 1 * 5 temp_computed_result= 5 5 * 4 temp_computed_result= 20 20 * 3 temp_computed_result= 60 60 * 2 temp_computed_result= 120 120 * 1 temp_computed_result= 120 factorial of 5 is : 120 120
Best Regards,
Sandeep

GANGA SANDEEP KUMAR
Reply


Messages In This Thread
RE: Want to print each iteration of factorial program - by sandeep_ganga - Jan-06-2020, 06:41 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  UnicodeEncodeError caused by print when program runs from Popen SheeppOSU 5 3,220 Jan-13-2022, 08:11 AM
Last Post: SheeppOSU
  Comparing recursion and loops using two scripts (basic factorial) Drone4four 3 2,398 Oct-11-2020, 06:48 PM
Last Post: deanhystad
  Python factorial code timebrahimy 4 89,578 Sep-27-2020, 12:23 AM
Last Post: timebrahimy
  factorial, repeating Aldiyar 4 2,988 Sep-01-2020, 05:22 PM
Last Post: DPaul
  factorial using recursive function spalisetty06 12 4,427 Aug-25-2020, 03:16 PM
Last Post: spalisetty06
  minor mistake in code for factorial spalisetty06 2 2,046 Aug-22-2020, 05:00 PM
Last Post: spalisetty06
  Help with getting sub-program to print text djwilson0495 2 1,997 Aug-16-2020, 05:03 PM
Last Post: deanhystad
  Factorial Code is not working when the given number is very long integer Raj_Kumar 2 2,460 Mar-31-2020, 06:40 PM
Last Post: deanhystad
  Factorial sketch(python 3) KingArthur526 1 2,058 Sep-25-2019, 01:51 PM
Last Post: ichabod801
  Factorial leodavinci1990 8 4,704 Jul-19-2019, 10:59 PM
Last Post: leodavinci1990

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020