[Tutor] An interesting web site for those who want to program adventure games

R. Alan Monroe R. Alan Monroe" <amonroe@columbus.rr.com
Sun May 4 20:33:02 2003


> ... but this may need some adjustment here to make things work
> conveniently, since in Basic, arrays were indexed starting from 1, but in
> Python, we start doing counting from 0.  Without some adjustments, we will
> end up having to do error-prone conversions between 0-indexing and
> 1-indexing in our head.

Can you do it using 0-based arrays, and putting "None" for the
non-exits? That seems more pythonic.

Alan