Let's write your first line of Python code!
In Python, we use
print() to display text on the screen.
print("Hello, World!")
print is a function - it performs an action() contain what we want to print"" tell Python this is text (called a string)Try running the code on the right! →
Interactive Visualization