数字转换成字符串python_数字转换成字符串Python

数字转换成字符串python_数字转换成字符串Python如何在Python中将数字转换为字符串?要将一个数字转换为字符串,有多种方法。让我们一一来看。使用format()将数字转换为字符串Example的中文翻译为:示例在这个例子中,我们将使用format()方法将一个数字转换为

如何在Python中将数字转换为字符串?   
如何在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(”   String = “, 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(”   String = “, myStr) print(“Type = “, type(myStr))   输出   Integer = 25 Type= <class ‘int’> String = 25 Type = <class ‘str’>   使用%s格式将数字转换为字符串   Example   的中文翻译为:   示例   在这个例子中,我们将使用%s格式说明符将一个数字转换为字符串−   # 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(”   String = “, 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(”   String = “, 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(”   String = “, myStr) print(“Type = “, type(myStr))   输出   Integer = 21 Type= <class ‘int’> String = 21 Type = <class ‘str’>

2024最新激活全家桶教程,稳定运行到2099年,请移步至置顶文章:https://sigusoft.com/99576.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。 文章由激活谷谷主-小谷整理,转载请注明出处:https://sigusoft.com/90204.html

(0)
上一篇 2024年 6月 17日 下午11:56
下一篇 2024年 6月 18日 上午7:06

相关推荐

关注微信