Chapter 21. Print Formatting and Strings

Waaaayyyy back in chapter 1, you learned about the print statement. It was the first command we ever used in Python. We’ve also seen (in chapter 5) that you can put a comma at the end of a print statement to make Python keep printing the next thing on the same line. We used that to make prompts for raw_input(), until we learned the shortcut of putting the prompt right in the raw_input() function.

In this chapter, we’re going to look at print formatting—ways to make your program’s output look the way you want it to. We’ll look at things like

  • starting new lines (and when you should do that).
  • spacing things out horizontally (and lining things up in columns).
  • printing variables in the middle of a string. ...

Get Hello World! now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.