📌  相关文章
📜  如何在Python中将int转换为字符串

📅  最后修改于: 2020-10-28 01:50:29             🧑  作者: Mango

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

我们可以使用Python内置的str()函数转换整数数据类型。此函数将任何数据类型作为参数并将其转换为字符串。但是我们也可以使用“%s”字面量和.format()函数。以下是str()函数的语法。

句法 –

str(integer_Value)

让我们了解以下示例。

示例-1使用str()函数

n = 25
# check  and print type of num variable
print(type(n))
print(n)

# convert the num into string
con_num = str(n)

# check  and print type converted_num variable
print(type(con_num))
print(con_num)

输出:


25

25

示例-2使用“%s”整数

n = 10

# check and print type of n variable
print(type(n))

# convert the num into a string and print
con_n = "% s" % n
print(type(con_n))

输出:



示例3:使用.format()函数

n = 10

# check  and print type of num variable
print(type(n))

# convert the num into string and print
con_n = "{}".format(n)
print(type(con_n))

输出:



示例-4:使用f字符串

n = 10

# check  and print type of num variable
print(type(n))

# convert the num into string
conv_n = f'{n}'

# print type of converted_num
print(type(conv_n)) 

输出:



我们定义了将整数数据类型转换为字符串类型的所有方法。您可以根据需要使用其中之一。