Posted in Python onJuly 17, 2018
Python2.6 之前:字符串转换为整形和浮点型
>>>import string >>>string.atoi('34.1') 34 >>>string.atof(‘34.1') 34.1
python2.6之后:字符串转换为整形和浮点型
>>>import string >>>int('34.1') 34 >>>float('34.1') 34.1
以上这篇Python 字符串转换为整形和浮点类型的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
Python 字符串转换为整形和浮点类型的方法
- Author -
在奋斗的大道声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@