This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Turning Pete's program into a class. | |
class Adventure: | |
X = 0 | |
Y = 1 | |
def __init__(self): | |
location = [0, 0] | |
self.move(location, 1, 0) | |
print location |