8 lines
198 B
Python
8 lines
198 B
Python
firstName = "John"
|
|
lastName = "Doe"
|
|
yourAge = 35
|
|
|
|
print ("Hello to you %s" % firstName, "%s!" % lastName, "\nYou are %d" % yourAge, "Years old")
|
|
|
|
print ("%s is %d years old!" % (firstName,yourAge))
|