Ejemplo 1: concatenar cadena e int python
# In python you need to cast the variable to a string with str()
var = 3
print("Variable=" + str(var) )
Ejemplo 2: cómo concatenar una cadena 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)
Ejemplo 3: concatenar cadenas e int python
number = [1,2,3,4,5]
number.reverse()
# to concatenate strings and int
# One needs to use str() to convert the string into int
print("Reverse list: "+ str(number))
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)