top of page

Python Tutorial

Public·1 member

Say "Hello, World!" With Python


A Simple line of code that can be executed in Python to print "Hello World".

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 online compiler


18 Views
bottom of page