Skip to content

Instantly share code, notes, and snippets.

import random
class Room:
explored = None
def __init__(self, description):
self.desc = description
def explore(self):
if not self.explored:
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: ex36_assignment.py
#
# Changes not staged for commit:
# (use "git add/rm <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#