Python 字符串转换为整形和浮点类型的方法

时间:2022-10-29 21:57:46

Python2.6 之前:字符串转换为整形和浮点型

?
1
2
3
4
5
6
7
8
9
>>>import string
 
>>>string.atoi('34.1')
 
34
 
>>>string.atof(‘34.1')
 
34.1

python2.6之后:字符串转换为整形和浮点型

?
1
2
3
4
5
6
7
8
9
>>>import string
 
>>>int('34.1'
 
34
 
>>>float('34.1')
 
34.1

以上这篇Python 字符串转换为整形和浮点类型的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/zhouzhiwengang/article/details/72420544