Python函数在使用的时候有几大分类,其中以int函数,float函数和str函数的应用最为广泛。下面我们就看看具体的环境中如何进行相关的函数代码的编写。下面我们先来看看int函数在Python函数中的作用。
(1)把符合数学格式的数字型字符串转换成整数
(2)把浮点数转换成整数,但是只是简单的取整,而非四舍五入。
举例:
- aa = int("124") #Correct
- print "aa = ", aa #result=124
- bb = int(123.45) #correct
- print "bb = ", bb #result=123
- cc = int("-123.45") #Error,Can't Convert to int
- print "cc = ",cc
- dd = int("34a") #Error,Can't Convert to int
- print "dd = ",dd
- ee = int("12.3") #Error,Can't Convert to int
- print ee
float函数将整数和字符串转换成浮点数。
举例:
- aa = float("124") #Correct
- print "aa = ", aa #result = 124.0
- bb = float("123.45") #Correct
- print "bb = ", bb #result = 123.45
- cc = float(-123.6) #Correct
- print "cc = ",cc #result = -123.6
- dd = float("-123.34") #Correct
- print "dd = ",dd #result = -123.34
- ee = float('123v') #Error,Can't Convert to float
- print ee
Python str函数将数字转换成字符举例:
- aa = str(123.4) #Correct
- print aa #result = '123.4'
- bb = str(-124.a) #SyntaxError: invalid syntax
- print bb
- cc = str("-123.45") #correct
- print cc #result = '-123.45'
- dd = str('ddd') #correct
- print dd #result = ddd
- ee = str(-124.3) #correct
- print ee #result = -124.3
以上就是对Python函数的三大类进行的分析,希望大家有所收获。
网页名称:Python函数中三大主要应用形式
网页链接:http://www.shufengxianlan.com/qtweb/news44/477544.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联