# Recursive function for Tower of Hanoidef hanoi(disks, source, helper, destination): # Base Condition if disks == 1: print( "Disk {} moves from tower {} to tower {}.".format( disks, source, destination ), ) return # Recursive calls in which function calls itself hanoi(disks - 1, source, destination, helper) print("Disk {} moves from tower {} to tower {}.".format(disks, source, destination)) hanoi(disks - 1, helper, source, destination)# Driver codedisks = int(input("Number of disks to be displaced: "))"""Tower names passed as arguments:Source: AHelper: BDestination: C"""# Actual function callhanoi(disks, "A", "B", "C")