print (Hello world) program in Python

Hello World !!

First program of every programmer

print() statement - 
The print() function prints the specified message to the screen, or other standard output device.

The message can be a string, or any other object, the object will be converted into a string before written to the screen.

Content and Questions from Hackerrank 
Questions - 
Output - single line of code 

Comments

Popular posts from this blog

Arithmetic Operators in Python

if - else statements in Python