请选择 进入手机版 | 继续访问电脑版
  • 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python 操练 实例94

Python 操练 实例94

Python 100例

标题 :时光 函数举例4,一个猜数游戏,判定 一小我 反映 快慢。

法式 剖析 :无。

法式 源代码:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

if __name__ == '__main__':
    import time
    import random
    
    play_it = raw_input('do you want to play it.('y' or 'n')')
    while play_it == 'y':
        c = raw_input('input a character:n')
        i = random.randint(0,2**32) % 100
        print 'please input number you guess:n'
        start = time.clock()
        a = time.time()
        guess = int(raw_input('input your guess:n'))
        while guess != i:
            if guess > i:
                print 'please input a little smaller'
                guess = int(raw_input('input your guess:n'))
            else:
                print 'please input a little bigger'
                guess = int(raw_input('input your guess:n'))
        end = time.clock()
        b = time.time()
        var = (end - start) / 18.2
        print var
        # print 'It took you %6.3 seconds' % time.difftime(b,a))
        if var < 15:
            print 'you are very clever!'
        elif var < 25:
            print 'you are normal!'
        else:
            print 'you are stupid!'
        print 'Congradulations'
        print 'The number you guess is %d' % i
        play_it = raw_input('do you want to play it.')

以上实例输出成果 为:

do you want to play it.('y' or 'n')y
input a character:
5
please input number you guess:

input your guess:
60
……
please input a little bigger
input your guess:
29
please input a little smaller
input your guess:
28
3.81868131868e-05
you are very clever!
Congradulations
The number you guess is 28
do you want to play it.

Python 100例


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

上一篇:
Python 操练 实例92发布时间:2022-01-22
下一篇:
Python 操练 实例96发布时间:2022-01-22
热门推荐
    热门话题
    阅读排行榜

    扫描微信二维码

    查看手机版网站

    随时了解更新最新资讯

    139-2527-9053

    在线客服(服务时间 9:00~18:00)

    在线QQ客服
    地址:深圳市南山区西丽大学城创智工业园
    电邮:jeky_zhao#qq.com
    移动电话:139-2527-9053

    Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap