ungleich-learning-circle/youngjin.han/python-the-hard-way/ex8.py

13 lines
347 B
Python
Raw Normal View History

2020-05-20 12:42:42 +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"
))