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中的map()函数和reduce()函数的用法
Apr 27 Python
在Python的Django框架下使用django-tagging的教程
May 30 Python
Python使用pyh生成HTML文档的方法示例
Mar 10 Python
详解django+django-celery+celery的整合实战
Mar 19 Python
TensorFlow Saver:保存和读取模型参数.ckpt实例
Feb 10 Python
Python通过2种方法输出带颜色字体
Mar 02 Python
python实现猜拳游戏
Mar 04 Python
Python Selenium安装及环境配置的实现
Mar 17 Python
宝塔面板成功部署Django项目流程(图文)
Jun 22 Python
matplotlib部件之矩形选区(RectangleSelector)的实现
Feb 01 Python
Python用SSH连接到网络设备
Feb 18 Python
Python使用OpenCV实现虚拟缩放效果
Feb 28 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
《Pokemon Sword·Shield》系列WEB动画《薄明之翼》第2话声优阵容公开!
2020/03/06 日漫
社区(php&&mysql)一
2006/10/09 PHP
Zend Studio (eclipse)使用速度优化方法
2011/03/23 PHP
验证坐标在某坐标区域内php代码
2016/10/08 PHP
YII框架中搜索分页jQuery写法详解
2016/12/19 PHP
Thinkphp开发--集成极光推送
2017/09/15 PHP
基于PHP实现的多元线性回归模拟曲线算法
2018/01/30 PHP
Jquery实战_读书笔记1—选择jQuery
2010/01/22 Javascript
深入理解JavaScript系列(27):设计模式之建造者模式详解
2015/03/03 Javascript
jQuery带时间的日期控件代码分享
2015/08/26 Javascript
Jquery实现仿京东商城省市联动菜单
2015/11/19 Javascript
BootStrap表单时间选择器详解
2017/05/09 Javascript
在vue项目中使用element-ui的Upload上传组件的示例
2018/02/08 Javascript
cdn模式下vue的基本用法详解
2018/10/07 Javascript
一步步教你利用Docker设置Node.js
2018/11/20 Javascript
如何在微信小程序里面退出小程序的方法
2019/04/28 Javascript
JS实现可用滑块滑动的缓动图代码
2019/09/01 Javascript
vue-simple-uploader上传成功之后的response获取代码
2020/09/07 Javascript
JavaScript通如何过RGraph实现动态仪表盘
2020/10/15 Javascript
js重写alert事件(避免alert弹框标题出现网址)
2020/12/04 Javascript
Python3实现的腾讯微博自动发帖小工具
2013/11/11 Python
利用PyInstaller将python程序.py转为.exe的方法详解
2017/05/03 Python
用 Python 爬了爬自己的微信朋友(实例讲解)
2017/08/25 Python
基于python的多进程共享变量正确打开方式
2018/04/28 Python
Sephora丝芙兰印尼官方网站:购买化妆品和护肤品
2018/07/02 全球购物
一组SQL面试题
2016/02/15 面试题
求职信的七个关键技巧
2014/02/05 职场文书
阳光体育活动方案
2014/02/16 职场文书
军训口号
2014/06/13 职场文书
农业局党的群众路线教育实践活动整改方案
2014/09/20 职场文书
开展党的群众路线教育实践活动个人对照检查材料
2014/11/05 职场文书
小学一年级学生评语大全
2014/12/25 职场文书
建筑工程催款函
2015/06/24 职场文书
2019脱贫攻坚工作总结报告范本!
2019/08/06 职场文书
css3实现背景图片半透明内容不透明的方法示例
2021/04/13 HTML / CSS
python 爬取哔哩哔哩up主信息和投稿视频
2021/06/07 Python