반응형
Check Tutorial tab to know how to to solve.
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.
728x90
반응형
'코딩테스트 > 해커랭크' 카테고리의 다른 글
[easy] Python if-Else (with Python) (0) | 2022.09.30 |
---|---|
[easy] The World of Numbers(with shell) (0) | 2022.09.29 |
[easy]Looping with Numbers(with shell) (0) | 2022.09.29 |
[easy]A personalized Echo (with shell) (0) | 2022.09.29 |
[easy]Looping and Skipping (with Shell) (0) | 2022.09.29 |