2014-11-24 20:50:58 -05:00

21 lines
363 B
Python

import random
class View:
def __init__( self ):
pass
def get_name( self ):
return "computer"
def display_doors( self ):
return random.randint( 1,3 )
def host_twist( self, message ):
return bool(random.getrandbits(1))
def winner( self ):
return ''
def loser( self ):
return 'n'