Say "Hello, World!" With Python - Hacker Rank Solutions
Here is a sample line of code that can be executed in Python:
print("Hello, World!")
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
Hello, World!
Say "Hello, World!" With Python - Hacker Rank Solutions
Use print
to write the resulting object to standard output.
Problem Tester's code :
Python 2
print "Hello, World!"
Python 3
print("Hello, World!")
but it show that test cases are failed
ReplyDelete