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函数形参用法实例分析
Aug 04 Python
Python的Django框架中消息通知的计数器实现教程
Jun 13 Python
详解Python中 sys.argv[]的用法简明解释
Dec 20 Python
Python变量赋值的秘密分享
Apr 03 Python
Python利用itchat库向好友或者公众号发消息的实例
Feb 21 Python
基于python实现文件加密功能
Jan 06 Python
Python3 io文本及原始流I/O工具用法详解
Mar 23 Python
python 的topk算法实例
Apr 02 Python
keras 多任务多loss实例
Jun 22 Python
Flask缓存静态文件的具体方法
Aug 02 Python
Python测试框架:pytest学习笔记
Oct 20 Python
Python基于argparse与ConfigParser库进行入参解析与ini parser
Feb 02 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图片上传类带图片显示
2006/11/25 PHP
PHP查询数据库中满足条件的记录条数(两种实现方法)
2013/01/29 PHP
PHP输出英文时间日期的安全方法(RFC 1123格式)
2014/06/13 PHP
PHP的mysqli_stmt_init()函数讲解
2019/01/24 PHP
北京奥运官方网站幻灯切换效果flash版打包下载
2008/01/30 Javascript
jquery bind(click)传参让列表中每行绑定一个事件
2014/08/06 Javascript
jquery实现简单的轮换出现效果实例
2015/07/23 Javascript
Svg.js实例教程及使用手册详解(一)
2016/05/16 Javascript
一种Javascript解释ajax返回的json的好方法(推荐)
2016/06/02 Javascript
Angularjs之filter过滤器(推荐)
2016/11/27 Javascript
React快速入门教程
2017/01/17 Javascript
浅谈js停止事件冒泡 阻止浏览器的默认行为(阻止超连接 #)
2017/02/08 Javascript
js/jq仿window文件夹移动/剪切/复制等操作代码
2017/03/08 Javascript
Bootstrap table学习笔记(2) 前后端分页模糊查询
2017/05/18 Javascript
Vue2 添加数据可视化支持的方法步骤
2019/01/02 Javascript
详解vue配置后台接口方式
2019/03/29 Javascript
jQuery实现简单飞机大战
2020/07/05 jQuery
[00:10]DOTA2全国高校联赛 以DOTA2会友
2018/05/30 DOTA
Python random模块用法解析及简单示例
2017/12/18 Python
python 日志增量抓取实现方法
2018/04/28 Python
Python使用Windows API创建窗口示例【基于win32gui模块】
2018/05/09 Python
在python中bool函数的取值方法
2018/11/01 Python
python-django中的APPEND_SLASH实现方法
2019/06/21 Python
使用Pytorch来拟合函数方式
2020/01/14 Python
python ffmpeg任意提取视频帧的方法
2020/02/21 Python
python 用opencv实现霍夫线变换
2020/11/27 Python
关于HTML5 Placeholder新标签低版本浏览器下不兼容的问题分析及解决办法
2016/01/27 HTML / CSS
医院后勤自我鉴定
2013/10/13 职场文书
财务会计应届生求职信
2013/11/24 职场文书
《我不是最弱小的》教学反思
2014/02/23 职场文书
生物科学专业自荐书
2014/06/20 职场文书
主题团日活动总结
2014/06/25 职场文书
2014年个人债务授权委托书范本
2014/09/22 职场文书
感恩节寄语2015
2015/03/24 职场文书
win10安装配置nginx的过程
2021/03/31 Servers
Python中re模块的元字符使用小结
2022/04/07 Python