# Chapter 09 example: the same three values, two ways. print("Keiko", 7, 95) # commas: a space between each print("Keiko" + " " + str(7) + " " + str(95)) # glued with +, single spaces