
要将一个数字转换为字符串,有多种方法。让我们一一来看。
使用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=String = 60 Type =
使用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=String = 25 Type =
使用%s格式将数字转换为字符串
Example
的中文翻译为:示例
在这个例子中,我们将使用%s格式说明符将一个数字转换为字符串−
本文档主要讲述的是JSON.NET 简单的使用;JSON.NET使用来将.NET中的对象转换为JSON字符串(序列化),或者将JSON字符串转换为.NET中已有类型的对象(反序列化?)。希望本文档会给有需要的朋友带来帮助;感兴趣的朋友可以过来看看
立即学习“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=String = 90 Type =
使用__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=String = 150 Type =
使用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=String = 21 Type =










