如何利用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使用webbrowser浏览指定url的方法
Apr 04 Python
Python中的默认参数详解
Jun 24 Python
详解Python操作RabbitMQ服务器消息队列的远程结果返回
Jun 30 Python
一条命令解决mac版本python IDLE不能输入中文问题
May 15 Python
Python适配器模式代码实现解析
Aug 02 Python
浅析python内置模块collections
Nov 15 Python
python中文分词库jieba使用方法详解
Feb 11 Python
浅谈selenium如何应对网页内容需要鼠标滚动加载的问题
Mar 14 Python
Python confluent kafka客户端配置kerberos认证流程详解
Oct 12 Python
Python 列表推导式需要注意的地方
Oct 23 Python
python实现银行账户系统
Feb 22 Python
Python基础之Socket通信原理
Apr 22 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中使用模板的方法
2008/05/24 PHP
CodeIgniter基本配置详细介绍
2013/11/12 PHP
PHP 面向对象程序设计(oop)学习笔记(一) - 抽象类、对象接口、instanceof 和契约式编程
2014/06/12 PHP
destoon整合UCenter图文教程
2014/06/21 PHP
PHP实现腾讯短网址生成api接口实例
2020/12/08 PHP
js控制框架刷新
2008/08/01 Javascript
通过jQuery源码学习javascript(二)
2012/12/27 Javascript
js/jquery解析json和数组格式的方法详解
2014/01/09 Javascript
JS循环遍历JSON数据的方法
2014/07/08 Javascript
使用JavaScript刷新网页的方法
2015/06/04 Javascript
自动完成的搜索框javascript实现
2016/02/26 Javascript
JavaScript学习笔记之取数组中最大值和最小值
2016/03/23 Javascript
在web中js实现类似excel的表格控件
2016/09/01 Javascript
jQuery实现的无限级下拉菜单功能示例
2016/09/12 Javascript
微信小程序 地图(map)实例详解
2016/11/16 Javascript
vue-dialog的弹出层组件
2020/05/25 Javascript
Bootstrap免费字体和图标网站(值得收藏)
2017/03/16 Javascript
分享5个顶级的JavaScript Ajax组件库
2018/09/16 Javascript
layui禁用侧边导航栏点击事件的解决方法
2019/09/25 Javascript
微信公众号H5之微信分享常见错误和问题(小结)
2019/11/14 Javascript
vue watch监控对象的简单方法示例
2021/01/07 Vue.js
[56:41]2018DOTA2亚洲邀请赛 3.31 小组赛 A组 Newbee vs OG
2018/04/01 DOTA
Python装饰器用法示例小结
2018/02/11 Python
Python常见字典内建函数用法示例
2018/05/14 Python
解读python如何实现决策树算法
2018/10/11 Python
python基于opencv检测程序运行效率
2019/12/28 Python
Python2和Python3中@abstractmethod使用方法
2020/02/04 Python
QML用PathView实现轮播图
2020/06/03 Python
美国儿童玩具、装扮和玩偶商店:Magic Cabin
2018/09/02 全球购物
Java文件和目录(IO)操作
2014/08/26 面试题
小学教师的个人自我鉴定
2013/10/24 职场文书
大学生怎样进行自我评价
2013/12/07 职场文书
2014年教育工作总结
2014/11/26 职场文书
2015教师个人德育工作总结
2015/07/22 职场文书
2016公司中秋节寄语
2015/12/07 职场文书
2016年“七一建党节”广播稿
2015/12/18 职场文书