A message outputted to the user (like on screen).
Here are some examples in Python
print ("Dave") - the word Dave would be output
print(6) - the number 6 would be output
print(name) - the value stored in the variable would be output
print(7*3) - would print out 21 as it performs the sum first
Point out that text needs quotes and number do not need them