print("Hello thar!") print(1, "cow", True, 3.5) print(1, "cow", True, 3.5, sep="MOOOO") #print(5 + "cat") this has an error in it. print("foo", end="flibbertygibbet") #print has two keyword arguments # sep: what a comma expands to in stdout Default: space # end: what gets put after the argument is printed Default: newline x = 15 print(str(x) + " * " + str(x) + " = " + str(x*x)) print(f"{x}*{x} = {x*x}") # format string