The print keyword has really no need of explaination. The only thing worth noticing is that it accepts multiple paramenters. All of the following are valid print commands.
print ("Hello\n");
print ("Hello","Damiano","\n");
str="Hello"; print (str,"Ian","\n");
Note that by default the print keyword does not add a newline to what is printed