Say "Hello, World!" With Python-HackerRank Solution

0

Hello world will be the first program for the beginners In every programming language, this will be the starting point even it is very simple program. This program help you to understand how Python print some message. In hackerrank this is the first step of challenges. 

 

 Here is a sample line of code that can be executed in Python: 




Here is a sample line of code that can be executed in Python:

 


  print("Hello, World!")

 
You can just as easily store a string as a variable and then print it to stdout: 
 


  my_string = "Hello, World!"
  print(my_string)


The above code will print Hello, World! on your screen. Try it yourself in the editor below!

Input Format

You do not need to read any input in this challenge.

Output Format

Print Hello, World! to stdout.

Sample Output 0

 


  Hello, World!

 
 
Solution
 


  print("Hello, World!")



Every running program has a text output area called "standard out", or sometimes just "stdout". The Python print() function takes in python data such as int and strings, and prints those values to standard out.
 
 
See Also:
 

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.
Post a Comment (0)
Our website uses cookies to enhance your experience. Learn More
Accept !