如何将整数转换为字符串?
42 ⟶ "42"
相反,请参见How do I parse a string to a float or int?。浮点数可以类似地处理,但处理小数点可能很棘手,因为浮点值不精确。有关更多具体建议,请参阅将浮点转换为字符串而不舍入。
如何将整数转换为字符串?
42 ⟶ "42"
相反,请参见How do I parse a string to a float or int?。浮点数可以类似地处理,但处理小数点可能很棘手,因为浮点值不精确。有关更多具体建议,请参阅将浮点转换为字符串而不舍入。
当前回答
这里有一个更简单的解决方案:
one = "1"
print(int(one))
输出控制台
>>> 1
在上面的程序中,int()用于转换整数的字符串表示。
注意:只有当变量完全由数字组成时,字符串格式的变量才能转换为整数。
同样,str()用于将整数转换为字符串。
number = 123567
a = []
a.append(str(number))
print(a)
我使用一个列表来打印输出,以突出显示变量(a)是一个字符串。
输出控制台
>>> ["123567"]
但要了解列表如何存储字符串和整数的区别,请先查看下面的代码,然后查看输出。
Code
a = "This is a string and next is an integer"
listone=[a, 23]
print(listone)
输出控制台
>>> ["This is a string and next is an integer", 23]
其他回答
对于希望将int转换为特定数字的字符串的人,建议使用以下方法。
month = "{0:04d}".format(localtime[1])
有关更多详细信息,您可以参考堆栈溢出问题显示带前导零的数字。
>>> i = 5
>>> print "Hello, world the number is " + i
TypeError: must be str, not int
>>> s = str(i)
>>> print "Hello, world the number is " + s
Hello, world the number is 5
这里有一个更简单的解决方案:
one = "1"
print(int(one))
输出控制台
>>> 1
在上面的程序中,int()用于转换整数的字符串表示。
注意:只有当变量完全由数字组成时,字符串格式的变量才能转换为整数。
同样,str()用于将整数转换为字符串。
number = 123567
a = []
a.append(str(number))
print(a)
我使用一个列表来打印输出,以突出显示变量(a)是一个字符串。
输出控制台
>>> ["123567"]
但要了解列表如何存储字符串和整数的区别,请先查看下面的代码,然后查看输出。
Code
a = "This is a string and next is an integer"
listone=[a, 23]
print(listone)
输出控制台
>>> ["This is a string and next is an integer", 23]
>>> str(42)
'42'
>>> int('42')
42
文档链接:
int()str()
str(x)通过调用x.__str__()将任何对象x转换为字符串,如果x没有__str__方法,则调用repr(x)。
我认为最体面的方式是“”。
i = 32 --> `i` == '32'