Guest User

Untitled

a guest
Jan 23rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. print formatter % (1, 2, 3, 4)
  3. print formatter % ("one", "two", "three", "four")
  4. print formatter % (True, False, False, True)
  5. print formatter % (formatter, formatter, formatter, formatter)
  6. print formatter % (
  7. "I had this thing.",
  8. "That you could type up right.",
  9. "But it didn't sing.",
  10. "So I said goodnight."
  11. )
Add Comment
Please, Sign In to add comment