make an horror game for mobile
def play(player_count, game_name): if player_count >= 8: if game_name == 'Evil Dead': return 'Too scary game' else: return 'Play other game' else: return 'Continue game' play(8, 'Evil Dead') play(7, 'Evil Dead') play(9, 'Evil Dead') play(8, 'Silent Hill') play(7, 'Silent Hill') play(9, 'Silent Hill')