励志成为优产的母猪--------猜数游戏 ,历史记录,pickle保存,队列deque

# pickle 可以处理复杂的序列化语法。(例如自定义的类的方法,游戏的存档等),存档以文件的形式保存   参见 https://www.cnblogs.com/abobo/p/8080447.html
# collections是Python内建的一个集合模块,提供了许多有用的集合类。参见 https://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/001411031239400f7181f65f33a4623bc42276a605debf6000
# coding: utf-8import randomimport picklefrom collections import deque

n = random.randint(0, 100)  # 随机找出0-100之中的数history_list = deque([], maxlen=5)  # 限制最大长度try_num = 0print(n)

def pk(m):    if m != n:        if m > n:            print("大了")        else:            print("小了")        return False    return True

def h_print():# pickle取    ret = pickle.load(open(‘history‘, ‘rb‘))    return ret

def history(history_list): # pickle存    history_list = list(history_list)    pickle.dump(history_list, open(‘history‘, ‘wb‘))

while True:    try_num += 1    if try_num > 10:        print("尝试次数过多,您已经笨死了!!!")        break    m = input("输入您的答案:")    try:                               # 异常处理 防止用户输入字母        # m = input("输入您的答案:")        if len(m) == 0:            print("not null")        m = int(m)        history_list.append(m)        history(history_list)        if pk(m) == True:            print("以您的智商,居然TM答对了")            break    except ValueError:        if m == "h":            print("您猜数的历史记录:")            print(h_print())        else:            print("格式有误,请输入整数字")

# 注解:使用list存储数据时,按索引访问元素很快,但是插入和删除元素就很慢了,因为list是线性存储,数据量大的时候,插入和删除效率很低。## deque是为了高效实现插入和删除操作的双向列表,适合用于队列和栈

原文地址:https://www.cnblogs.com/jum-bolg/p/10801195.html

时间: 2024-10-27 05:29:00

励志成为优产的母猪--------猜数游戏 ,历史记录,pickle保存,队列deque的相关文章

BZOJ 2222: [Cqoi2006]猜数游戏【神奇的做法,傻逼题,猜结论】

2222: [Cqoi2006]猜数游戏 Time Limit: 20 Sec  Memory Limit: 259 MBSubmit: 604  Solved: 260[Submit][Status][Discuss] Description 佳佳和明明玩一个猜数游戏.佳佳想一个1~n之间的整数,明明每次可以随便猜一个数.从第二次猜测起,佳佳告诉明明本次猜测的数和上次猜测的数相比哪个更接近.B表示本次猜测的数更接近,W表示上次猜测的数更接近.如果两次猜测的接近程度一样,则既可回答B也可回答W.

简单猜数游戏2

/*简单猜数游戏,magic number#2,版本*/#include<stdio.h>#include<stdlib.h> int main(void){ int magic; /*magic number*/ int guess; /*user's guess*/ printf("\nWelcome to the magic number game\n"); magic=rand(); /*产生随机数*/ printf("\nGuess the

简单猜数游戏1

/*简单猜数游戏,magic number#1,版本*/#include<stdio.h>#include<stdlib.h> int main(void){ int magic; /*magic number*/ int guess; /*user's guess*/ printf("\nWelcome to the magic number game\n"); magic=rand(); /*产生随机数*/ printf("\nGuess the

模拟算法_掷骰子游戏&amp;&amp;猜数游戏

模拟算法是用随机函数来模拟自然界中发生的不可预测的情况,C语言中是用srand()和rand()函数来生成随机数. 先来介绍一下随机数的生成: 1.产生不定范围的随机数 函数原型:int rand() 产生一个介于0~RAD_MAX间的整数,其具体值与系统有关系.Linux下为2147483647.我们可以在include文件夹中的stdlib.h中可以看到(Linux在usr目录下,Windows在安装目录下) 1 #include<stdio.h> 2 #include<stdlib

OJ_1003.猜数游戏

1003. 猜数游戏 (Standard IO) 时间限制: 1000 ms  空间限制: 262144 KB 题目描述 有一个"就是它"的猜数游戏,步骤如下:请你对任意输入的一个三位数x,在这三位数后重复一遍,得到一个六位数,467-->467467.把这个数连续除以7.11.13,输出最后的商. 输入 输入一个三位数x. 输出 输出最后的商. 样例输入 100 1 #include<stdio.h> 2 int main() 3 { 4 int a,b,c; 5

一个笨拙的猜数游戏代码参考

直接上代码!!! #include <stdio.h> #include <stdlib.h> #define TOP 1000 #define BOTTOM 0 /* 由Mr.Blue and Mr.Green制作于2016.7.31 21:17 本程序采用块状分段,使程序更加简单,但可读性降低,望见谅 */ int main(int argc, char * argv[]) { int toobig, toosmall, temp; char input; printf(&qu

猜数游戏-flag的运用

package my;import java.util.Scanner;public class MyJava {        public static void main(String[] args) {        // TODO Auto-generated method stub        @SuppressWarnings("resource")        Scanner input = new Scanner(System.in);              

数组常见操作_猜数游戏

数组常见操作: 猜数游戏:从键盘中任意输入一个数据,判断数列中是否包含此数,并记录该数在数组中存在多少次 public class fortyNine { public static void main(String[] args) { Scanner input = new Scanner(System.in); int[] sum = {10,20,21,34,65,76,6,87,98,20}; System.out.println("猜数游戏开始!"); System.out.

猜数游戏

/*猜数游戏,magic number#4,版本*/#include<stdio.h>#include<stdlib.h>#include<time.h>int main(void){ int magic;/*magic number*/ int guess;/*user's number*/ int guessnum,response=1; time_t t; printf("\nWelcome to the magic number game\n"