下你所需,载你所想!
汇集开发技术源码资料

python石头剪刀布小游戏代码

:744B :1 :2021-12-29 17:29:54

部分简介

python石头剪刀布小游戏代码如果开发者对于本文件有需要的可以参考。
def main():
global fo
# fo = open("D:\\pythonWS\\guess\\data\\data.txt",'w') #产生的 SRT 文件 D:\学习\语文
print("please guess: 1,2,3 . 0:exit")
# while True:
for i in range(1000):
comput = random.randint(1,3)
# print(comput)
you = int(input())
# you = random.randint(1,3) #用随机数来模拟你的值,来测试
# print(you)
# if you == '\n': break
if(you>0 and you<4):
resultOut(you,comput)
else: # ineffective input
if you == 0:
break #you exit
else:
continue #jump err key

print("youWin=%i cptWin:%i" % (youWin,cptWin))
print("work end.")

python石头剪刀布小游戏代码

热门推荐

相关文章