# Chapter 07 example: print can take more than one argument. # Separators between arguments are spaces by default. print("Hello,", "world!") # To control the separator, join the strings yourself with +. print("Hello, " + "world!")