Say "Hello, World!" With Python | HackerRank
Say "Hello, World!" With Python | HackerRank
Get started with Python by printing to stdout.
www.hackerrank.com
Goal
Print "Hello, World!" to stdout.
Solution
You can use print function to print the specificed message.
# Say "Hello, World!" With Python
if __name__ == '__main__':
print("Hello, World!")'software Engineering > (Python)HackerRank' 카테고리의 다른 글
| [Python] HackerRank - Write a function (0) | 2023.01.26 |
|---|---|
| [Python] HackerRank - Loops (0) | 2023.01.21 |
| [Python] HackerRank - Python: Division (0) | 2023.01.20 |
| [Python] HackerRank - Arithmetic Operators (0) | 2023.01.19 |
| [Python] HackerRank - Python If-Else (0) | 2023.01.19 |