Makes me silly stare into the screen, and its for beginners...
Code:
# silly strings + silly strings + silly strings
print("concatenate two" + "strings with the '+' operator.")
print("\nThis string" + "may not" + "seem terr" + "ibly impressive."
+ "But what" + "you don't know" + " is that\n" + "it's one real"
+ "l" + "y" + " long string, created from the concatenation"
+ "of " + "twenty-something\n" + "different strings, broken across"
+ "a few lines." + " Now are you" + " impressed? " + "Okay,\n"
+ "this" + "one" + "long" + "string is now over!")
print("If you really like a string, you can repeat it.")
print("who doesn't like pie?")