全国旗舰校区

不同学习城市 同样授课品质

北京

深圳

上海

广州

郑州

大连

武汉

成都

西安

杭州

青岛

重庆

长沙

哈尔滨

南京

太原

沈阳

合肥

贵阳

济南

下一个校区
就在你家门口
+
当前位置:首页  >  技术干货

Python中如何将int转换为string

发布时间:2023-07-21 17:01:39
发布人:xqq

我们可以使用 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:使用。格式()功能


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)) 

输出:



我们已经定义了将整数数据类型转换为字符串类型的所有方法。你可以根据自己的要求使用其中的一种。

#python教程

相关文章

为什么Hadoop是用Java实现的?

为什么Hadoop是用Java实现的?

2023-10-15
Java8引入Lambda表达式的利弊是什么?

Java8引入Lambda表达式的利弊是什么?

2023-10-15
同步请求和异步请求的区别是什么?

同步请求和异步请求的区别是什么?

2023-10-15
云平台是什么?

云平台是什么?

2023-10-15

最新文章

常见网络安全面试题:Windows常用的命令有哪些?

常见网络安全面试题:Windows常用的命令有哪些?

2023-10-09
常见网络安全面试题:根据设备告警如何展开排查?

常见网络安全面试题:根据设备告警如何展开排查?

2023-10-09
常见网络安全面试题:mysql加固呢?(数据库加固)

常见网络安全面试题:mysql加固呢?(数据库加固)

2023-10-09
常见网络安全面试题:windows和linux加固?(操作系统加固)

常见网络安全面试题:windows和linux加固?(操作系统加固)

2023-10-09
在线咨询 免费试学 教程领取