Buscamos en el mundo online y así tenerte la respuesta a tu dilema, si continúas con alguna duda deja la pregunta y contestaremos porque estamos para servirte.
Ejemplo 1: imprimir string y pitón variable
x =input("Enter the first number: ")
y =input("Enter the second number: ")
z =int(x)+int(y)#Just use a commaprint("The sum of the numbers you entered =",z)
Ejemplo 2: variables de impresión de python y string
# This prints out "John is 23 years old."
name ="John"
age =23print("%s is %d years old."%(name, age))# note: the letter is based on the datatype. %s = string, %d = decimal
Ejemplo 3: cómo imprimir una variable en python
variable ="Hello World"print(variable)
Ejemplo 4: variable de impresión de Python
var ="Python printing is amazing!"print(var)
Si te animas, tienes la habilidad dejar un post acerca de qué le añadirías a esta división.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)