Beginner·3 min·basics · print · strings
Hello, World!
Hello, World!
Every programming journey starts here. print writes a line of text to the output.
What's happening?
print("...")is a function call. The text inside the quotes is a string.- The
f"..."form is an f-string — it lets you drop variables straight inside a string with{name}.
Try it
- Change the name to your own.
- Add a third line that prints today's vibe.