如何在Python中将数字转换为字符串?

WBOY
发布: 2023-08-19 20:45:25
转载
8232人浏览过

如何在python中将数字转换为字符串?

要将一个数字转换为字符串,有多种方法。让我们一一来看。

使用format()将数字转换为字符串

Example

的中文翻译为:

示例

在这个例子中,我们将使用format()方法将一个数字转换为字符串 -

# Integer to be converted
n = 60

# Display the integer and it's type
print("Integer = ",n)
print("Type= ", type(n))

# Convert the integer to string and display the type
myStr = "{}".format(n)
print("\nString = ", myStr)
print("Type = ", type(myStr))
登录后复制

输出

Integer =  60
Type=  <class 'int'>
String =  60
Type =  <class 'str'>
登录后复制

使用str()函数将数字转换为字符串

Example

的中文翻译为:

示例

在这个例子中,我们将使用str()方法将一个数字转换为字符串 −

# Integer to be converted
n = 25

# Display the integer and it's type
print("Integer = ",n)
print("Type= ", type(n))

# Convert the integer to string using str() and display the type
myStr = str(n)
print("\nString = ", myStr)
print("Type = ", type(myStr))
登录后复制

输出

Integer =  25
Type=  <class 'int'>

String =  25
Type =  <class 'str'>
登录后复制

使用%s格式将数字转换为字符串

Example

的中文翻译为:

示例

在这个例子中,我们将使用%s格式说明符将一个数字转换为字符串−

立即学习Python免费学习笔记(深入)”;

# Integer to be converted
n = 90

# Display the integer and it's type
print("Integer = ",n)
print("Type= ", type(n))

# Convert the integer to string using %s and display the type
myStr = "% s" % n
print("\nString = ", myStr)
print("Type = ", type(myStr))
登录后复制

输出

Integer =  90
Type=  <class 'int'>

String =  90
Type =  <class 'str'>
登录后复制

使用__str__()将数字转换为字符串

Example

的中文翻译为:

示例

在这个例子中,我们将使用Python中的__string__()方法将一个数字转换为字符串 -

# Integer to be converted
n = 150

# Display the integer and it's type
print("Integer = ",n)
print("Type= ", type(n))

# Convert the integer to string using __str__() and display the type
myStr = n.__str__()
print("\nString = ", myStr)
print("Type = ", type(myStr))
登录后复制

输出

Integer =  150
Type=  <class 'int'>

String =  150
Type =  <class 'str'>
登录后复制

使用f-string将数字转换为字符串

Example

的中文翻译为:

示例

在这个例子中,我们将使用 f-string 将一个数字转换为字符串 −

# Integer to be converted
n = 21

# Display the integer and it's type
print("Integer = ",n)
print("Type= ", type(n))

# Convert the integer to string using f-string and display the type
myStr = f'{n}'
print("\nString = ", myStr)
print("Type = ", type(myStr))
登录后复制

输出

Integer =  21
Type=  <class 'int'>

String =  21
Type =  <class 'str'>
登录后复制

以上就是如何在Python中将数字转换为字符串?的详细内容,更多请关注php中文网其它相关文章!

python速学教程(入门到精通)
python速学教程(入门到精通)

python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:tutorialspoint网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号