Skip to content

Instantly share code, notes, and snippets.

@randallm
Created December 7, 2012 04:30
Show Gist options
  • Save randallm/4230782 to your computer and use it in GitHub Desktop.
Save randallm/4230782 to your computer and use it in GitHub Desktop.
for kairui
class Attacker:
# use 4 spaces, you fool
def __init__(self):
self.user_high = None
def user_input(self):
self.user_high = input("enter your high: ")
return self.user_high
attacker_1 = Attacker()
attacker_1.user_input()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment