print : It produces text output on the console.
Syntax:
print "Message"
print Expression
To print the given text message or expression value on the console, you have to moves the cursor down to the next line.
print Item1, Item2, ..., ItemN
To prints several messages and/or expressions on the same line.
Examples:
print "Hello, world!"
age = 45
print "You have", 65 - age, "years until retirement"
Output:
Hello, world!
You have 20 years until retirement
0 Comment(s)