# different options on printing

# print a bunch of different things - separate by commas, and with spaces in between them
print("2 * 7 =", 2 * 7, ", correct?")

# specify the separator
print("2 * 7 = ", 2*7, ", correct?", sep="")

# specify the end
print("2 * 7 = ", end="")
print(2*7, end="")
print(", correct?")

# combining strings for output with +, here print gets a single string
print("2 * 7 = " + str(2*7) + ", correct?")