“Python Print Variable and String” Réponses codées

Python Print Variables et chaîne

# 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

Python Print Variable and String

foo = "seven"

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

Variable d'impression Python

variable=5
print(f"{variable}")
#or
print(variable)
Pleasant Petrel

Réponses similaires à “Python Print Variable and String”

Questions similaires à “Python Print Variable and String”

Plus de réponses similaires à “Python Print Variable and String” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code