En Python, un número entero se puede convertir en una string usando la función str() incorporada. La función str() toma cualquier tipo de datos de Python y lo convierte en una string. Pero el uso de str() no es la única forma de hacerlo. Este tipo de conversión también se puede realizar utilizando la palabra clave «%s» , la función .format o utilizando la función f-string .
A continuación se muestra la lista de posibles formas de convertir un número entero en una string en python:
Python3
num = 10 # check and print type of num variable print("Type of variable before convertion : ", type(num)) # convert the num into string converted_num = str(num) # check and print type converted_num variable print("Type After convertion : ",type(converted_num))
Python3
num = 10 # check and print type of num variable print("Type of variable before convertion : ", type(num)) # convert the num into string and print converted_num = "% s" % num print("Type after convertion : ", type(converted_num))
Python3
num = 10 # check and print type of num variable print("Type before convertion : ", type(num)) # convert the num into string and print converted_num = "{}".format(num) print("Type after convertion :",type(converted_num))
Python3
num = 10 # check and print type of num variable print("Type before convertion : ",type(num)) # convert the num into string converted_num = f'{num}' # print type of converted_num print("Type after convetion : ", type(converted_num))
Python3
num = 10 # check and print type of num variable print("Type before convertion : ",type(num)) # convert the num into string converted_num = num.__str__() # print type of converted_num print("Type after convetion : ", type(converted_num))
Publicación traducida automáticamente
Artículo escrito por RajuKumar19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA