Follow these steps:
print("Hello world!")
print ( "Hello world!")
print("Hello world!")
print("Hi", "there")
a_function_name("argument 1", 2, 3.0)
print("Hello world!")
Again… as mentioned previously, you can use help(thing) in the interactive shell to show information about built-in functions and other Python features:
>>> help(print)