Python Global Lists
I'm learning python, and am having a problem with global variables/lists. I'm writing a basic manual tower of hanoi program, here's the program currently: pilar1 = [5,4,3,2,1,0] pi
Solution 1:
It's because you've "declared" it as pilar1
, not pillar1
Post a Comment for "Python Global Lists"