Here's a challenge to test your print skills. Write a program that prints three things about yourself on separate lines: your name, your favorite programming language (Python, hopefully!), and how many years you've been coding.
Then modify it: print all three on one line, separated by " | " (pipe with spaces). You'll need the sep parameter. Run your code both ways.
Make sure the output looks exactly how you expect. This builds muscle memory for print formatting. When you're done, try adding your age to the output using end to keep things on one line.