Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 583 Bytes

001_Say_Hello_World_With_Python.md

File metadata and controls

38 lines (25 loc) · 583 Bytes

001 - Say "Hello, World!" With Python

Problem

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.

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!")