Después de mirar en diversos repositorios y páginas de internet al terminar hemos dado con la respuesta que te enseñaremos aquí.
Ejemplo 1: concatenar string e int python
# In python you need to cast the variable to a string with str()
var =3print('Variable = '+str(var))
Ejemplo 2: cómo concatenar un string con int en python
#by chaing it's type using str() function# We have a string and a integer
string1 ="superman"
num1 =20# concatenated string
concatString = string1 +str(num1)print(concatString)
Si te gusta el asunto, puedes dejar un tutorial acerca de qué te ha impresionado de esta crónica.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)