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中的并发编程实例
Jul 07 Python
在Python3中使用asyncio库进行快速数据抓取的教程
Apr 02 Python
python实现人民币大写转换
Jun 20 Python
解决Python下json.loads()中文字符出错的问题
Dec 19 Python
python ddt数据驱动最简实例代码
Feb 22 Python
基于python生成器封装的协程类
Mar 20 Python
python基于K-means聚类算法的图像分割
Oct 30 Python
简单了解python元组tuple相关原理
Dec 02 Python
Python如何实现自带HTTP文件传输服务
Jul 08 Python
微软开源最强Python自动化神器Playwright(不用写一行代码)
Jan 05 Python
python爬虫智能翻页批量下载文件的实例详解
Feb 02 Python
python数据处理之Pandas类型转换
Apr 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
我的论坛源代码(八)
2006/10/09 PHP
php加水印的代码(支持半透明透明打水印,支持png透明背景)
2013/01/17 PHP
Php output buffering缓存及程序缓存深入解析
2013/07/15 PHP
OAuth认证协议中的HMACSHA1加密算法(实例)
2017/10/25 PHP
Mootools 1.2教程 Fx.Morph、Fx选项和Fx事件
2009/09/15 Javascript
JS解析json数据并将json字符串转化为数组的实现方法
2012/12/25 Javascript
jQuery原生的动画效果
2015/07/10 Javascript
JavaScript统计字符串中每个字符出现次数完整实例
2016/01/28 Javascript
浅谈javascript中的三种弹窗
2016/10/21 Javascript
基于jQuery实现Accordion手风琴自定义插件
2020/10/13 Javascript
React-intl 实现多语言的示例代码
2017/11/03 Javascript
HTML5+JS+JQuery+ECharts实现异步加载问题
2017/12/16 jQuery
vue.js中$set与数组更新方法
2018/03/08 Javascript
基于vue v-for 多层循环嵌套获取行数的方法
2018/09/26 Javascript
小程序云开发教程如何使用云函数实现点赞功能
2019/05/18 Javascript
Vue的click事件防抖和节流处理详解
2019/11/13 Javascript
JS+css3实现幻灯片轮播图
2020/08/14 Javascript
vue实践---根据不同环境,自动转换请求的url地址操作
2020/09/21 Javascript
Python使用稀疏矩阵节省内存实例
2014/06/27 Python
在Python下利用OpenCV来旋转图像的教程
2015/04/16 Python
Python实现按学生年龄排序的实际问题详解
2017/08/29 Python
Python爬虫文件下载图文教程
2018/12/23 Python
Python安装与基本数据类型教程详解
2019/05/29 Python
Jupyter Notebook折叠输出的内容实例
2020/04/22 Python
解决Keras 中加入lambda层无法正常载入模型问题
2020/06/16 Python
基于python实现坦克大战游戏
2020/10/27 Python
澳大利亚电子产品购物网站:Dick Smith
2017/02/02 全球购物
俄罗斯连接商品和买家的在线平台:goods.ru
2020/11/30 全球购物
static函数与普通函数有什么区别
2015/12/25 面试题
公务员中国梦演讲稿
2014/08/19 职场文书
要账委托书范本
2014/09/15 职场文书
个人存款证明书
2014/10/18 职场文书
关于学习的决心书
2015/02/05 职场文书
复活读书笔记
2015/06/29 职场文书
MySQL update set 和 and的区别
2021/05/08 MySQL
实战 快速定位MySQL的慢SQL
2022/03/22 MySQL