4.0. Print - JulTob/Python GitHub Wiki
print(<Expression>)
print("Hello world.")
Text = "This is text"
print(Text)
print("The Text variable is '", Text, "'")
print( Text, end = "") #changes the end character
print("\n" * 3) # 3 new lines
print("Firstline\nSecondline")
print("The answer is ", answer)
print("Hello",end="*")
print("World",end="*") # Hello*World*
print(<Text>, file=<file>)
print("Error message", file=sys.stderr)