Print Statements
The print() function is Python's way of displaying output to the console. It's often the first thing you learn!
Basic Print
Loading Python Playground...
Printing Multiple Items
You can print multiple items separated by commas:
Loading Python Playground...
Exercises
Loading Python Exercise...
Loading Python Exercise...
Loading Python Exercise...
The sep Parameter
Control what separates multiple items:
Loading Python Playground...
Loading Python Exercise...
The end Parameter
Control what comes after the print:
Loading Python Playground...
Practice Playground
Loading Python Playground...
Key Takeaways
print()displays output to the console- Use single or double quotes for strings
- Separate multiple items with commas
sepcontrols the separator between itemsendcontrols what comes after (default is newline)

