下面是一个简单的Python实现剪刀石头布小游戏的代码示例:
import random
def get_choice():
print("请选择您要出的手势:")
print("1.剪刀")
print("2.石头")
print("3.布")
choice = input("请输入您的选择(数字):")
return choice
def get_computer_choice():
return random.choice(['剪刀', '石头', '布'])
def determine_winner(player_choice, computer_choice):
if player_choice == computer_choice:
return "平局!"
elif (player_choice == '剪刀' and computer_choice == '布') or \
(player_choice == '石头' and computer_choice == '剪刀') or \
(player_choice == '布' and computer_choice == '石头'):
return "恭喜您获胜!"
else:
return "很遗憾,您输了!"
def play_game():
player_choice = get_choice()
computer_choice = get_computer_choice()
winner = determine_winner(player_choice, computer_choice)
print("电脑选择了:" + computer_choice)
print(winner)
play_again = input("是否再来一局?(是/否)")
if play_again == "是":
play_game()
else:
print("游戏结束,感谢您的参与!")
play_game()
这段代码定义了一些函数来执行游戏中的主要操作,如获取玩家的选择、获取电脑的选择以及确定比赛的胜负。在play_game()函数中,首先会要求玩家选择一个手势,然后模拟电脑的随机选择,并根据选择的比较规则判断胜负并打印结果。如果玩家想要再来一局,可以继续输入“是”,否则游戏结束。您可以根据需要进一步扩展和优化这个游戏。
如遇不懂,可以问gpt,这里推荐几个国内免费的gpt网站,我也是从这里学的