item = [\'rock\', \'paper\', \'scissors\'] player = input(\'Enter the item: \') if player == item[player]: print(\'win\') else: print(\'lose\')