使用Python中的str()函数将整数值转换为字符串
给定一个整数值,我们必须使用将该值转换为字符串str()功能。
Python代码将整数值转换为字符串值
#Python代码转换整数值
#到字符串值
#整数值
i_value = 12345
#转换为字符串值
s_value = str(i_value)# printing the integer & string values with their types
print("i_value: ", i_value)
print("type(i_value): ", type(i_value))
print("s_value: ", s_value)
print("type(s_value): ", type(s_value))
#通过乘以另一个运算
print("i_value*4: ", i_value*4)
print("s_value*4: ", s_value*4)输出结果
i_value: 12345type(i_value): <class 'int'> s_value: 12345type(s_value): <class 'str'> i_value*4: 49380 s_value*4: 12345123451234512345
代码说明:
在上面的代码中,i_value是一个包含整数值的整数变量,我们通过使用以下命令将i_value转换为字符串str()函数并将结果存储在s_value变量中。为了进一步验证类型,我们将同时打印两个变量的类型及其值,并打印其四倍的乘积值。