python获取从命令行输入数字的方法


Posted in Python onApril 29, 2015

本文实例讲述了python获取从命令行输入数字的方法。分享给大家供大家参考。具体如下:

#----------------------------------------
#      Name: numerical_input.py
#     Author: Kevin Harris
# Last Modified: 02/13/04
#  Description: This Python script demonstrates 
#         how to get numerical input
#         from the command line 
#         and use the if-else conditional.
#----------------------------------------
print()
print( "Welcome to the Area calculation program" )
print( "---------------------------------------" )
print()
# Print out the menu:
print( "Please select a shape:" )
print( "1 Rectangle" )
print( "2 Circle" )
print()
# The input function both prompts the user
# for input and fetches it...
shape = int( input( "> " ) )
# Calculate the area...
if shape == 1:
  height = int( input("Please enter the height: ") )
  width = int( input("Please enter the width: ") )
  area = height*width
  print( "The area is", area )
else:
  radius = int( input("Please enter the radius: ") )
  area = 3.14*(radius**2)
  print( "The area is", area )
input( '\n\nPress Enter to exit...' )

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Python 搭建Web站点之Web服务器网关接口
Nov 06 Python
详解python的webrtc库实现语音端点检测
May 31 Python
Python实现字符串匹配算法代码示例
Dec 05 Python
Python 使用with上下文实现计时功能
Mar 09 Python
Django添加KindEditor富文本编辑器的使用
Oct 24 Python
numpy.where() 用法详解
May 27 Python
详解Django模版中加载静态文件配置方法
Jul 21 Python
python flask中动态URL规则详解
Nov 22 Python
TensorFlow实现批量归一化操作的示例
Apr 22 Python
keras 自定义loss损失函数,sample在loss上的加权和metric详解
May 23 Python
基于Python爬取搜狐证券股票过程解析
Nov 18 Python
BeautifulSoup获取指定class样式的div的实现
Dec 07 Python
在Python中处理XML的教程
Apr 29 #Python
python搜索指定目录的方法
Apr 29 #Python
python中sleep函数用法实例分析
Apr 29 #Python
介绍Python中内置的itertools模块
Apr 29 #Python
python使用fileinput模块实现逐行读取文件的方法
Apr 29 #Python
python将字符串转换成数组的方法
Apr 29 #Python
Python中使用hashlib模块处理算法的教程
Apr 28 #Python
You might like
使用PHP获取汉字的拼音(全部与首字母)
2013/06/27 PHP
PHP实现获取FLV文件的时间
2015/02/10 PHP
php实现约瑟夫问题的方法小结
2015/03/23 PHP
PHP判断JSON对象是否存在的方法(推荐)
2016/07/06 PHP
详解php协程知识点
2018/09/21 PHP
用PHP做了一个领取优惠券活动的示例代码
2019/07/05 PHP
YII2框架中behavior行为的理解与使用方法示例
2020/03/13 PHP
Extjs学习笔记之二 初识Extjs之Form
2010/01/07 Javascript
用JavaScript获取DOM元素位置和尺寸大小的方法
2013/04/12 Javascript
js取模(求余数)隔行变色
2014/05/15 Javascript
javascript二维数组转置实例
2015/01/22 Javascript
javascript递归回溯法解八皇后问题
2015/04/22 Javascript
Bootstrap富文本组件wysiwyg数据保存到mysql的方法
2016/05/09 Javascript
完美实现八种js焦点轮播图(上篇)
2016/07/18 Javascript
jquery延迟对象解析
2016/10/26 Javascript
基于JS组件实现拖动滑块验证功能(代码分享)
2016/11/18 Javascript
利用jquery实现验证输入的是否是数字、小数,包含保留几位小数
2016/12/07 Javascript
Bootstrap 模态框多次显示后台提交多次BUG的解决方法
2017/12/26 Javascript
微信小程序实现YDUI的ScrollNav组件
2018/02/02 Javascript
解决vue项目nginx部署到非根目录下刷新空白的问题
2018/09/27 Javascript
koa+jwt实现token验证与刷新功能
2019/05/30 Javascript
JavaScript基于用户照片姓名生成海报
2020/05/29 Javascript
python开发之基于thread线程搜索本地文件的方法
2015/11/11 Python
pytorch训练imagenet分类的方法
2018/07/27 Python
python使用pandas处理excel文件转为csv文件的方法示例
2019/07/18 Python
python单例模式的多种实现方法
2019/07/26 Python
Python类继承和多态原理解析
2020/02/05 Python
python json load json 数据后出现乱序的解决方案
2020/02/27 Python
Python 跨.py文件调用自定义函数说明
2020/06/01 Python
Python3内置函数chr和ord实现进制转换
2020/06/05 Python
自我鉴定书范文
2013/10/02 职场文书
招聘与培训专员岗位职责
2014/01/30 职场文书
文秘专业应届生求职信
2014/05/26 职场文书
毕业生就业推荐表自我评价
2015/03/02 职场文书
清明祭英烈活动总结
2015/05/11 职场文书
《槐乡的孩子》教学反思
2016/02/20 职场文书