79691018

Date: 2025-07-05 11:59:29
Score: 1
Natty:
Report link
#installed games
games = [
  'Soccer', 'Tic Tac Toe', 'Snake',
  'Puzzle', 'Rally']

#taking player's choice as a number input
choice = int(input())

if choice <= len(games) - 1 and choice >= 0:
  print(games[choice])
else:
  print('Index Error')
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alex Shevchuk