Skip to content

Commit f6bbb37

Browse files
authored
Update Python Program for Tower of Hanoi.py
Updated print statement to match current syntax
1 parent 1f2ea76 commit f6bbb37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python Program for Tower of Hanoi.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Recursive Python function to solve the tower of hanoi
22
def TowerOfHanoi(n , source, destination, auxiliary):
33
if n==1:
4-
print "Move disk 1 from source",source,"to destination",destination
4+
print("Move disk 1 from source ",source," to destination ",destination)
55
return
66
TowerOfHanoi(n-1, source, auxiliary, destination)
7-
print "Move disk",n,"from source",source,"to destination",destination
7+
print("Move disk ",n," from source ",source," to destination ",destination)
88
TowerOfHanoi(n-1, auxiliary, destination, source)
99
n = 4
1010
TowerOfHanoi(n,'A','B','C')

0 commit comments

Comments
 (0)