import random
computer = random.choice(['Бумага', 'Камень', 'Ножницы'])
player = input('Камень, бумага или ножницы? ')
if player == computer:
print('Ничья!')
elif (player == 'ножницы' and computer == 'бумага') or \
(player == 'бумага' and computer == 'камень') or \
(player == 'камень' and computer == 'ножницы'):
print('Вы победили')
else:
print('Вы проиграли')
import random
t = {'камень': 0, 'ножницы': 1, 'бумага': 2}
c = random.choice(list(t.keys()))
p = input('Камень, бумага или ножницы? ').strip().lower()
print(['Ничья!', 'Вы победили', 'Вы проиграли'][(t[c] - t[p]) % 3])