Created
July 18, 2021 04:25
-
-
Save opabravo/85ecf62b090e82cf09eefa5107a21a81 to your computer and use it in GitHub Desktop.
十人猜拳
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
from typing import Counter, List | |
class Player: | |
TRANSFER = ("剪刀", "石頭", " 布 ") | |
def __init__(self, name: str) -> None: | |
self.name = name | |
self.rnd_num = 0 | |
def run(self): | |
self.rnd_num = random.randint(1, 3) | |
print(f"{self.name:<5} 出 -> {self.TRANSFER[self.rnd_num-1]}") | |
def round_start(players: List[Player]): | |
"""開始新的一局""" | |
print("-"*20) | |
for p in players: | |
p.run() | |
print("-"*20) | |
def match_start(): | |
"""開始新的一場""" | |
players = [Player(f"玩家{i}") for i in range(1, 11)] | |
round=1 | |
while len(players) != 1: | |
print(f"\n======\n第{round}局") | |
round_start(players) | |
pure_result = set([p.rnd_num for p in players]) | |
if pure_result == {1,2,3}: | |
print("[!] 此局無效") | |
elif pure_result == {1,2}: | |
players = [p for p in players if p.rnd_num == 2] | |
print("[!] 石頭獲勝") | |
elif pure_result == {2,3}: | |
players = [p for p in players if p.rnd_num == 3] | |
print("[!] 布獲勝") | |
elif pure_result == {1,3}: | |
players = [p for p in players if p.rnd_num == 1] | |
print("[!] 剪刀獲勝") | |
else: | |
print("[!] 平手") | |
round+=1 | |
return players[0] | |
def main(): | |
winners = [] | |
while 1: | |
winner = match_start() | |
winners.append(winner.name) | |
c = Counter(winners) | |
print("\n" + " | ".join(f"[{k}] 贏了 : {v}場" for k, v in c.most_common())) | |
choice = input("\n是否進入下一場遊戲? (y,n) -> ") | |
if choice.lower() not in ('y', 'yes'): | |
break | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment