Ara Kooser wrote:
>     def look(here):
>         "Look around the place you are in"
>         print here.description

This is technicaly OK but conventionally the first argument to a method 
is 'self'. Since you are learning it would be good to keep to the 
convention.

> outside1 = Area("Outside")
> outside1.description = "You are standing outside with the town gate to
> your back"
> self.contents.append("dirt")
> 
> 
> look(bedroom)

Maybe you mean
   bedroom.look()
or
   outside1.look()

Kent
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to