Module 2: Python Basics - Data Types, Variables, I/O, and Operators
Your first program: `print()`
The print()
function is one of the first functions you'll encounter. It's used to display output to the console.
Example: print("Hello, Python!")
will show "Hello, Python!" on your screen.
You can print strings (text in quotes), numbers, variables, and even the results of expressions.