"Камень, Ножницы, Бумага" код выдаёт ошибку, опыта работы с модулями мало так что буду рад за объяснение)
from random import *
a = {
"rock": "scissors",
"scissors": "paper",
"paper": "rock"
}
while True:
c = choice(list(a.items()))
b = input("Ваш ход: ")
if b == c:
print("No match!")
for i, j in a.items():
if b == i and c == j:
print("You WIN")
elif c == i and b == j:
print("You LOSE! ")
break