当前位置:首页 » 《随便一记》 » 正文

玩转python(一):一个简单的猜数游戏_靳小锅er的博客

28 人参与  2022年03月03日 15:07  分类 : 《随便一记》  评论

点击全文阅读


目录

前言:

一、程序展示

        二、 程序解析


前言:

前几天刚自学完python,于是抽了点时间准备写一两个程序练一练手,于是就根据网上的一些案例写一个简单的猜数游戏。

一、程序展示

import random
print("------gusee number game-------")
answer=random.randint(1, 100)
choices=input("Please input how many times do you want to guess:")
times=int(choices)
temp=input("Please input the number you think :")
guess=int(temp)
while (guess !=answer and times!=0):
    times=times-1
    if guess<answer:
        print("bother ,you answer is less than the right answer")
    elif guess>answer:
        print("bother,you answer is bigger than the right answer")
    if times>0:
        temp=input("Please again input the number you think :")
        guess=int(temp)
if times==0:
    print("Sorry my bother,you maybe not to be win")
    print("the right answer is ")
    print(answer)
else:
    print("my bother,you are right")
    print("You 're the best")

print("THE GAME IS END")
    

二、 程序解析

random:函数库

random.randint(",")生成范围内的随机数

while 循环语句的调用

if else 和if elif 判断语句的使用


点击全文阅读


本文链接:http://zhangshiyu.com/post/35682.html

程序  语句  前言  
<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1