In order to print messages in Python, you need to use print().
You can make a simple program by spelling: print("hello world")
Remember to add the "" when you want to print the message. Without it, there would be an error saying no such variable exists. This is because print() is for variable, if you had a variable for input and spelled print(variable), it would display what you made for input.