[Tutor] What is a fun basic game project.

Andy Joslin Andy at joslin.isa-geek.com
Fri May 7 11:08:40 EDT 2004


Add the "Towers of Hanoi"  puzzle/game to the list.  It is the one with 
3 pegs and a few disks of various sizes that start stacked biggest to 
smallest on one peg...  The goal is to move the whole stack from one peg 
to another, only moving one at a time and never putting a large disk on 
top of a smaller disk.  Try to figure out the algorithm to solve it 
automatically.  You can build the engine to use a text display, or try 
to use a gui.

This is one that many CompSci students have to do in the first year... 

Alan Gauld wrote:

>>Hi, this is my first message to this mailing list.
>>
>>Anyone know of a fun game project that is good for beginners, and
>>    
>>
>what aspects they involve.
>  
>
>>eg. conditions, arrays etc.
>>    
>>
>
>A couple of easy games to start with are OXO and Conway's Game of
>Life.
>Both involve arrays and conditionals and loops and some degree of
>graphical representation plus user input.
>
>Paper/Rock/Scissors is another that can be easily implemented in plain
>text and later have a graphical wrap added.
>
>HTH,
>
>Alan G
>
>
>_______________________________________________
>Tutor maillist  -  Tutor at python.org
>http://mail.python.org/mailman/listinfo/tutor
>  
>




More information about the Tutor mailing list