Every Python journey starts with print() — a function that displays text on the screen. Whatever you put inside the parentheses, wrapped in quotes, gets printed.
This one line is a complete, working Python program.
Your Task
Use print() to display exactly: Hello, World!
Type print("Hello, World!") — mind the capital H and W, and the comma.