import random
total = int(input("Please enter the total number of offices:"))
if total % 2:
# When entering an odd number of the total office
flag = int((total + 1) / 2)
else:
# When the total number of offices is even
flag = int((total) / 2 + 1)
print("This game has a total of {total} games, {total} games{flag} wins".
format(total=total, flag=flag))
parscore = 0
copscore = 0
parflag, copflag = flag, flag
i = 0
dictguess = {1: 'Scissors', 2: 'Stone', 3: 'cloth'}
while parflag and copflag and total:
# 1-Scissors, 2-Stone, 3-Cloth, random punches by computer
i += 1
copguess = random.randint(1, 3)
parguess = int(input("1-scissors, 2-stone, 3-cloth, please give the player a punch for the second time:".format(i)))
if parguess - copguess == 1 or parguess - copguess == -2:
parscore += 1
print("This time, the person scored, the situation of both sides punching: people-{}, computer-{}".format(dictguess[parguess], dictguess[copguess]))
parflag = flag - parscore
elif parguess - copguess == 0:
print("The same punch, please re-enter")
else:
copscore += 1
print("This time the computer scores, the situation of both sides punching: people-{}, computer-{}".format(dictguess[parguess], dictguess[copguess]))
copflag = flag - copscore
if parscore > copscore:
print("\nThe game player wins, the final scorer - computer: {} - {}".format(parscore, copscore))
else:
print("\nThis game computer wins, the final scorer - computer: {} - {}".format(parscore, copscore))