当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python integer转string用法及代码示例


在 Python 中,可以使用 内置 str() 函数将整数转换为字符串。 str() 函数接受任何 python 数据类型并将其转换为字符串。但使用 str() 并不是唯一的方法。这种类型的转换也可以使用 “%s” 关键字、.format 函数或使用 f-string 函数来完成。以下是在 python 中将整数转换为字符串的可能方法列表:

1.使用str()函数

用法:str(integer_value)

例:

Python3


num = 10
# check  and print type of num variable
print(type(num))
# convert the num into string
converted_num = str(num)
# check  and print type converted_num variable
print(type(converted_num))

2.使用“%s”关键字



用法: “%s” % integer

例:

Python3


num = 10
# check  and print type of num variable
print(type(num))
# convert the num into string and print
converted_num = "% s" % num
print(type(converted_num))

3. Using .format() function

用法:‘{}’.format(integer)

例:

Python3


num = 10
# check  and print type of num variable
print(type(num))
# convert the num into string and print
converted_num = "{}".format(num)
print(type(converted_num))

4. 使用 f-string

用法:f'{integer}’

例:

Python3


num = 10
# check  and print type of num variable
print(type(num))
# convert the num into string
converted_num = f'{num}'
# print type of converted_num
print(type(converted_num))




相关用法


注:本文由纯净天空筛选整理自RajuKumar19大神的英文原创作品 Convert integer to string in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。