python实现猜数字游戏(无重复数字)示例分享


Posted in Python onMarch 29, 2014
import time, random
class GuessNum:
    def __init__(self):
        self._num = ''
        self.input_num = []
        self.count = 1                                      #猜对所用次数
        self.sec = 0                                           #猜对所用时间
        self._generate_num()
    def _generate_num(self):                        #产生不重复的四个数字
        seq_zton = list(range(10))
        for i in range(0, 4):
            a = str(random.choice(seq_zton))   #选出一个数字
            self._num += a
            seq_zton.remove(int(a))                 #注意a的类型
        self.sec = time.clock()                          #开始计时
    def check_answer(self):
        return self._num
    def check_input(self):
        num_pos, num_value = 0, 0               #位置对和数值对的分别的个数
        tmp = input("Please input the number you guess(No repetition),or 'c' to check the answer:")
        if tmp == 'c':
            print(self.check_answer())
            tof = self.check_input()
            return tof
        elif not tmp.isalnum or not len(tmp) == 4:
            print("Wrong format!")
            tof = self.check_input()                #需要优化
            return tof
        self.input_num = list(tmp)
        lst_temp = list(self._num)
        if self.input_num == lst_temp:          #猜对
            self.prt_vic()
            return True
        for i in lst_temp:
            if i in self.input_num:
                if lst_temp.index(i) == self.input_num.index(i):        #位置也相同
                    num_pos += 1
                    num_value += 1
                else:
                    num_value += 1
        self.prt_state(num_pos, num_value)
        self.count += 1
        return False
    def prt_state(self, num_pos, num_value):
        print("You've got %d numbers with the right position and %d numbers with the right value only" % (num_pos, num_value))
    def prt_vic(self):
        t = time.clock()
        self.sec = t - self.sec
        print("Congratulations!You have successfully got the right number!")
        print("%d times and %.2f sec in total to get the right answer" % (self.count, self.sec))
gn = GuessNum()
while True:
    ss = gn.check_input()
    if ss:
        b = input("Continue? y/n:")
        if b == 'n':
            break
        else:
            gn = GuessNum()
            continue
Python 相关文章推荐
python实现在windows下操作word的方法
Apr 28 Python
python 使用get_argument获取url query参数
Apr 28 Python
Python使用matplotlib实现绘制自定义图形功能示例
Jan 18 Python
Python使用tkinter库实现文本显示用户输入功能示例
May 30 Python
详解python之协程gevent模块
Jun 14 Python
Python 使用PyQt5 完成选择文件或目录的对话框方法
Jun 27 Python
django中的图片验证码功能
Sep 18 Python
python 五子棋如何获得鼠标点击坐标
Nov 04 Python
python 使用cx-freeze打包程序的实现
Mar 14 Python
Python打印不合法的文件名
Jul 31 Python
python实现图片转换成素描和漫画格式
Aug 19 Python
Pandas之缺失数据的实现
Jan 06 Python
使用python实现扫描端口示例
Mar 29 #Python
Python Trie树实现字典排序
Mar 28 #Python
python实现探测socket和web服务示例
Mar 28 #Python
python实现目录树生成示例
Mar 28 #Python
python改变日志(logging)存放位置的示例
Mar 27 #Python
使用python删除nginx缓存文件示例(python文件操作)
Mar 26 #Python
python实现ip查询示例
Mar 26 #Python
You might like
php判断ip黑名单程序代码实例
2014/02/24 PHP
设定php简写功能的方法
2019/11/28 PHP
解析DHTML,JavaScript,DOM,BOM以及WEB标准的描述
2013/06/19 Javascript
jQuery的attr与prop使用介绍
2013/10/10 Javascript
JavaScript立即执行函数的三种不同写法
2014/09/05 Javascript
jQuery监控文本框事件并作相应处理的方法
2015/04/16 Javascript
jQuery实现的进度条效果
2015/07/15 Javascript
jquery实现点击向下展开菜单项(伸缩导航)效果
2015/08/22 Javascript
Angular Js文件上传之form-data
2015/08/28 Javascript
javascript函数式编程程序员的工具集
2015/10/11 Javascript
jQuery+CSS3实现3D立方体旋转效果
2015/11/10 Javascript
Svg.js实例教程及使用手册详解(一)
2016/05/16 Javascript
值得分享的Bootstrap Table使用教程
2016/11/23 Javascript
使用重写url机制实现验证码换一张功能
2017/08/01 Javascript
jQuery DOM节点的遍历方法小结
2017/08/15 jQuery
修改UA在PC中访问只能在微信中打开的链接方法
2017/11/27 Javascript
nodejs中使用archive压缩文件的实现代码
2019/11/26 NodeJs
Vue单文件组件开发实现过程详解
2020/07/30 Javascript
复习Python中的字符串知识点
2015/04/14 Python
python查看微信好友是否删除自己
2016/12/19 Python
TensorFlow平台下Python实现神经网络
2018/03/10 Python
python logging日志模块以及多进程日志详解
2018/04/18 Python
Python中一些不为人知的基础技巧总结
2018/05/19 Python
tensorflow之变量初始化(tf.Variable)使用详解
2020/02/06 Python
基于python实现百度语音识别和图灵对话
2020/11/02 Python
Python爬虫分析微博热搜关键词的实现代码
2021/02/22 Python
Canvas 文字碰撞检测并抽稀的方法
2019/05/27 HTML / CSS
Gap中国官网:美式休闲风服饰
2017/02/05 全球购物
阿迪达斯德国官方网站:adidas德国
2017/07/12 全球购物
铭宣海淘转运:美国、日本、英国转运等全球转运公司
2019/09/10 全球购物
信息管理专业推荐信
2013/10/29 职场文书
学院书画协会部门职责
2013/11/28 职场文书
绩效管理实施方案
2014/03/19 职场文书
优秀少先队辅导员先进事迹材料
2014/05/18 职场文书
学习委员竞选稿
2015/11/20 职场文书
周一早安温馨问候祝福语!
2019/07/15 职场文书