Answers for "python print format "%s""

0

python print format "%s"

# This prints out "John is 23 years old."
name = "John"
age = 23
print("%s is %d years old." % (name, age))
Posted by: Guest on October-25-2020

Python Answers by Framework

Browse Popular Code Answers by Language