“Imprimir variable en oración python” Código de respuesta

Variables de impresión de Python y cadena

# This prints out "John is 23 years old."
name = "John"
age = 23
print("%s is %d years old." % (name, age))
# note: the letter is based on the datatype. %s = string, %d = decimal
Jealous Joey

Variable de impresión de Python y cadena

foo = "seven"

print("She lives with " + foo + " small men")
Dark Dolphin

Imprimir variable en oración python

what is your name?
what is your favorite color?
Outstanding Ox

Respuestas similares a “Imprimir variable en oración python”

Preguntas similares a “Imprimir variable en oración python”

Más respuestas relacionadas con “Imprimir variable en oración python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código