ungleich-learning-circle/kjg/python-the-hard-way/e8.py

12 lines
342 B
Python
Raw Normal View History

2020-05-20 12:16:04 +00:00
formatter = "{} {} {} {}"
print(formatter.format(1, 2, 3, 4))
print(formatter.format("one", "two", "three", "four"))
print(formatter.format(True, False, False, True))
print(formatter.format(formatter, formatter, formatter, formatter))
print(formatter.format(
"Try your",
"Own text here",
"Maybe a poem",
"Or a song about fear"
))