12 lines
201 B
Python
12 lines
201 B
Python
voted = {}
|
|
def check_voter(name):
|
|
if voted.get(name):
|
|
print "kick them out!"
|
|
else:
|
|
voted[name] = True
|
|
print "let them vote!"
|
|
|
|
check_voter("tom")
|
|
check_voter("mike")
|
|
check_voter("mike")
|