我們可以使用 Python 內(nèi)置的 str() 函數(shù)來轉(zhuǎn)換整數(shù)數(shù)據(jù)類型。此函數(shù)將任何數(shù)據(jù)類型作為參數(shù),并將其轉(zhuǎn)換為字符串。但是我們也可以使用“%s”文本并使用。format()函數(shù)。下面是 str() 函數(shù)的語法。
語法-
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”整數(shù)
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))
輸出:
我們已經(jīng)定義了將整數(shù)數(shù)據(jù)類型轉(zhuǎn)換為字符串類型的所有方法。你可以根據(jù)自己的要求使用其中的一種。