Python中实现float转为String

图片[1]-Python中实现float转为String-uusu优素-乐高,模型,3d打印,编程

之前向大家介绍过Python中float() 函数的实现过程(https://www.py.cn/jishu/jichu/21933.html)。在使用float() 函数时,我们用的字符是浮点数,但是有时我们并不需要浮点数,这时我们就要将float转化为其他形式。本文将介绍Python float 转换为 String的两种方法:使用'%d'%num实现和使用str()方法实现。

方法一:使用'%d'%num实现

num=322
str1='%d'%num#转为整型
print(str1)
>>>
'32'
num=32.348
str2='%f'%32.348#转为浮点型
print(str2)
>>>
'32.348000'

方法二:使用str()方法实现

pi=3.1415

print(type(pi))#float

piInString=str(pi)#float->str

print(type(piInString))#str

输出

<class'float'>
<class'str'>
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞13 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容