Python programs write readable output with the print function. For example, print("C'est la vie") makes the program output the text C'est la vie. The text "C'est la vie" must be between double quotation marks.
print
print("C'est la vie")
C'est la vie
"C'est la vie"
Print Hello, world!.
Hello, world!