学习Python 猜字游戏(上)

缺点:不能生成随机答案

num = 19
i_num = -1
n = 0
# 一个猜数字的游戏,3次机会
while num != i_num:
    n = n + 1

    i_num = int(input(‘请输入数字:‘))
    if n < 3:
        if i_num > num:
            print("大了哦")
        elif i_num < num:
            print(‘小了哦‘)
        else:
            print(‘Bingo!‘)
    elif n >= 3:
        if i_num == num:
            print(‘Bingo!‘)
        else:
            print(‘您还是没有猜到,3次机会已经用完了‘)
            break

print(‘您总共输入了%d次‘%n)
print(" ")
input(‘按回车键退出‘)
时间: 2024-10-14 21:53:06

学习Python 猜字游戏(上)的相关文章

猜字游戏---批处理

最近学习批处理,看到一个大神写得猜字游戏,看懂了之后也仿了一个一模一样的,今天就来说道说道.先看下源码和效果图. @echo off color 0f mode con:cols=55 lines=30 title 猜数字游戏 By leo echo.&echo. echo.&echo ***** 游戏规则 ***** echo.&echo 程序会自动生成一组四个互不相同的0-9内的整数, echo.&echo 请你根据猜测和判断,每次输入一组四个互不相同 echo.&am

猜字游戏java

一.实践目的 1.掌握基本输入输出. 2.掌握方法定义与调用,理解参数传递方式. 3.掌握数组的声明.定义与初始化,数组的处理. 4.掌握数组作为方法参数和返回值. 二.实践要求 利用方法.数组.基本输入输出等Java基础知识,给出所选项目的基本设计与实现. 三.项目需求 所选项目名称:猜字游戏 项目需求描述,主要指应实现的主要功能.如:制作一个猜字小程序,又根据实践一:基础程序设计实践实践目的,只要作出相应的功能,实现相应的输入输出即可,窗口以及共多功能可以在后期完善! https://git

猜字游戏源码

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Threading; namespace 制作

python 猜字谜游戏(随机数)

python   猜字谜游戏(随机数) import randomtimes = 3secret = random.randint(1,10)guess = 0print('-----------我爱吃鱼----------')temp = input("不妨猜一下我的心里的数字:")guess = int(temp)while (guess != secret)and (times > 0):    temp = input("猜错啦,请重新输入:")  

python 猜数字游戏

这里来写一个python猜数字的游戏. #coding:utf-8 import random real_num = random.randrange(10) retry_count = 0 while retry_count <= 2 :     guess_num = raw_input("Please guess the real num:").strip()     if len(guess_num) ==0:         continue     if guess_

js 学习一 猜数字游戏

知识点 js 操作元素 增 (document.createElement(),document.body.appendChild()), 删(parentNode.removeChild()) ,改(guessField.disabled = false;) 查(document.querySelector('.lastResult')) if 判断语句 for 循环语句 js 方法 自定义方法 用js方法(Math.floor()Math.random()) js 操作css <!DOCTY

c语言小程序:编写猜字游戏

#include <stdio.h> #include <stdlib.h> #include <time.h> int main() { int input=1; printf("欢迎使用猜数字游戏\n"); while (input) { printf("**********************\n"); printf("******* 1.start ******\n"); printf("

python -猜字小游戏

代码运行效果如下: 注意: 1.必须要在python3环境想使用 2.QQ:3084276329(一起交流学习) 3.还请大家评论 Guess the word game代码如下: 1 #! /usr/bin/env python 2 # -*- coding: utf-8 -*- 3 # Guess the word game 4 # 博客:https://www.cnblogs.com/muxii 5 # 那个木兮啊 6 import tkinter 7 import threading 8

Python自动化3.0-------学习之路-------while循环(猜字游戏)!

猜数字程序: #Author:Mego age_mego =30 count =0 while count <3: guess_age =int(input("请输入想猜的数字:")) if guess_age==age_mego: print("输入的数字正确!") break elif guess_age > age_mego: print("输入的数字大了") else: print("输入的数字太小!")