如何利用Python开发一个简单的猜数字游戏


Posted in Python onSeptember 22, 2019

前言

本文介绍如何使用Python制作一个简单的猜数字游戏。

游戏规则

玩家将猜测一个数字。如果猜测是正确的,玩家赢。如果不正确,程序会提示玩家所猜的数字与实际数字相比是“大(high)”还是“小(low)”,如此往复直到玩家猜对数字。

准备好Python3

首先,需要在计算机上安装Python。可以从Python官网下载并安装。本教程需要使用最新版的Python 3(版本3.x.x)。

确保选中将Python添加到PATH变量的框。如果不这样做,将很难运行该程序。

现在,在设备上打开文本/代码编辑器。就个人而言,我偏好使用Brackets。 Windows上预装了Notepad, Mac OS包含TextEdit,而Linux用户可以使用Vim。

打开文本编辑器后,保存新文件。我将它命名为main.py,但你可以随意命名,只要它以.py结尾即可。

如何利用Python开发一个简单的猜数字游戏

编码

本教程的说明将作为注释包含在代码中。 在Python中,注释以#开头并一直持续到行结束。

from keras.layers import Conv2D, MaxPooling2D, GlobalAveragePooling2D
# First, we need to import the 'random' module.
# This module contains the functionality we need to be able to randomly 
select the winning number.

import random

# Now, we need to select a random number.
# This line will set the variable 'correct' to be equal to a random
 integer between 1 and 10.

correct = random.randint(1, 10)
# Let's get the user's first guess using the 'input' function.

guess = input("Enter your guess: ")

# Right now, the user's input is formatted as a string.
# We can format it as an integer using the 'int' function.

guess = int(guess)

# Let's start a loop that will continue until the user has guessed
 correctly.
# We can use the '!=' operator to mean 'not equal'.

while guess != correct:
# Everything in this loop will repeat until the user has guessed
 correctly.
# Let's start by giving the user feedback on their guess. We can do
 this using the 'if' statement.

# This statement will check if a comparison is true.
# If it is, the code inside the 'if' statement will run.

if guess > correct:

# This code will run if the user guessed too high.
# We can show a message to the user using the 'print' function.

print("You've guessed too high. Try guessing lower.")

else:

# The 'else' statement adds on to an 'if' statement.
# It will run if the condition of the 'if' statement is false.

# In this case, it will run if the user guessed too low, so we can give
 them feedback.

print("You've guessed too low. Try guessing higher.")

# Now we need to let the user guess again.
# Notice how I am combining the two lines of guessing code to make just 
one line.

guess = int(input("Enter your guess: "))

# If a user's guess is still incorrect, the code in the 'while' loop
 will be repeated
.# If they've reached this point in the code, it means they guessed
 correctly, so let's say that.

print("Congratulations! You've guessed correctly.")

此外,可以随意更改程序中的任何内容。

例如,可以将正确的数字设置为1到100而不是1到10,可以更改程序在print()函数中所说的内容。你的代码想怎么写都可以。

如何利用Python开发一个简单的猜数字游戏

运行程序

根据你的操作系统,打开命令提示符(Windows / Linux)或终端(Mac)。 按顺序尝试以下每个命令。 如果正确安装Python,其中至少有一个应该可以运行。

python C:/Users/username/Desktop/main.py

py C:/Users/username/Desktop/main.py

python3 C:/Users/username/Desktop/main.py

确保将C:/Users/username/Desktop/main.py替换为Python文件的完整路径。程序运行后,可测试一下,玩几次! 完成操作后,按向上箭头键复制最后一个命令,然后按Enter即可再次运行。以下是没有任何注释的代码版本:

import random

correct = random.randint(1, 10)

guess = input("Enter your guess: ")
guess = int(guess)

while guess != correct:
if guess > correct:
print("You've guessed too high. Try guessing lower.")
else:
print("You've guessed too low. Try guessing higher.")

guess = int(input("Enter your guess: "))
print("Congratulations! You've guessed correctly.")

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对三水点靠木的支持。

Python 相关文章推荐
Python专用方法与迭代机制实例分析
Sep 15 Python
python实现的简单抽奖系统实例
May 22 Python
Python删除空文件和空文件夹的方法
Jul 14 Python
python3实现TCP协议的简单服务器和客户端案例(分享)
Jun 14 Python
Python爬取附近餐馆信息代码示例
Dec 09 Python
利用Python写一个爬妹子的爬虫
Jun 08 Python
python3实现磁盘空间监控
Jun 21 Python
在Python中关于使用os模块遍历目录的实现方法
Jan 03 Python
python文件及目录操作代码汇总
Jul 08 Python
Python调用jar包方法实现过程解析
Aug 11 Python
关于django python manage.py startapp 应用名出错异常原因解析
Dec 15 Python
分享7个 Python 实战项目练习
Mar 03 Python
Python中关于浮点数的冷知识
Sep 22 #Python
Python安装及Pycharm安装使用教程图解
Sep 20 #Python
Python实现语音识别和语音合成功能
Sep 20 #Python
使用python将最新的测试报告以附件的形式发到指定邮箱
Sep 20 #Python
Python使用__new__()方法为对象分配内存及返回对象的引用示例
Sep 20 #Python
Python 类方法和实例方法(@classmethod),静态方法(@staticmethod)原理与用法分析
Sep 20 #Python
Python 类属性与实例属性,类对象与实例对象用法分析
Sep 20 #Python
You might like
PHP开发注意事项总结
2015/02/04 PHP
PHP mysqli事务操作常用方法分析
2017/07/22 PHP
laravel框架模型和数据库基础操作实例详解
2020/01/25 PHP
jValidate 基于jQuery的表单验证插件
2009/12/12 Javascript
JAVASCRIPT实现的WEB页面跳转以及页面间传值方法
2010/05/13 Javascript
jquery 学习之一 对象访问
2010/11/23 Javascript
firebug的一个有趣现象介绍
2011/11/30 Javascript
Nodejs极简入门教程(三):进程
2014/10/27 NodeJs
node.js实现BigPipe详解
2014/12/05 Javascript
JS获取及设置TextArea或input文本框选择文本位置的方法
2015/03/24 Javascript
JavaScript中DOM详解
2015/04/13 Javascript
jquery插件qrcode在线生成二维码
2015/04/26 Javascript
javascript中eval和with用法实例总结
2015/11/30 Javascript
修改jquery中dialog的title属性方法(推荐)
2016/08/26 Javascript
微信小程序 SocketIO 实例讲解
2016/10/13 Javascript
vue.js指令v-for使用及索引获取
2016/11/03 Javascript
JS中关于事件处理函数名后面是否带括号的问题
2016/11/16 Javascript
node.js中EJS 模板快速入门教程
2017/05/08 Javascript
JavaScript注册时密码强度校验代码
2017/06/30 Javascript
JS+HTML5实现图片在线预览功能
2017/07/22 Javascript
javascript连接mysql与php通过odbc连接任意数据库的实例
2017/12/27 Javascript
微信小程序导入Vant报错VM292:1 thirdScriptError的解决方法
2019/08/01 Javascript
nodejs实现聊天机器人功能
2019/09/19 NodeJs
python字符串连接的N种方式总结
2014/09/17 Python
用Python实现web端用户登录和注册功能的教程
2015/04/30 Python
1分钟快速生成用于网页内容提取的xslt
2018/02/23 Python
使用python实现ftp的文件读写方法
2019/07/02 Python
对Django项目中的ORM映射与模糊查询的使用详解
2019/07/18 Python
pyqt5数据库使用详细教程(打包解决方案)
2020/03/25 Python
在vscode中启动conda虚拟环境的思路详解
2020/12/25 Python
python 实现的车牌识别项目
2021/01/25 Python
html2canvas截图空白问题的解决
2020/03/24 HTML / CSS
Superdry瑞典官网:英国日本街头风品牌
2017/05/17 全球购物
广告设计专业毕业生自我鉴定
2014/09/27 职场文书
如何用vue实现网页截图你知道吗
2021/11/17 Vue.js
Android移动应用开发指南之六种布局详解
2022/09/23 Java/Android