Syntax
print ( expression exp1 [, expression exp2, ...] )
Description
The print procedure prints the expression to stdout as a single line terminated with a newline character. If there is more than one argument, they are printed with a space delimiter. If there are no arguments, such as print(), the print result is a newline only. You can use variables, numbers, strings, lists or expressions as arguments in this function.
Example
print("Hello world");