def tokyoChoice(): ''' Prints Tokyo! movie information. From model.py to shell.''' project6model.return_line(8) project6model.tokyoChoice()
def parasiteChoice(): ''' Prints Parasite movie information. From model.py to shell.''' project6model.return_line(6) project6model.parasiteChoice()
def snowChoice(): ''' Prints Snowpiercer movie information. From model.py to shell.''' project6model.return_line(7) project6model.snowChoice()
def okjaChoice(): ''' Prints Okja movie information. From model.py to shell.''' project6model.return_line(5) project6model.okjaChoice()
def motherChoice(): ''' Prints Mother movie information. From model.py to shell.''' project6model.return_line(4) project6model.motherChoice()
def momChoice(): ''' Prints Memories of Murder movie information. From model.py to shell''' project6model.return_line(3) project6model.momChoice()
def hostChoice(): ''' Prints The Host movie information. From model.py to shell ''' project6model.return_line(2) project6model.hostChoice()
def barkingChoice(): ''' Prints Barking Dogs Never Bite movie information. From model.py to shell.''' project6model.return_line(1) project6model.barkingChoice()