[Python #2] create ex8.py

This commit is contained in:
kjg 2020-05-20 21:16:04 +09:00
parent 9c8e7d9045
commit 6296a5b753
3 changed files with 14 additions and 19 deletions

View File

@ -0,0 +1,11 @@
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"
))

View File

@ -66,3 +66,6 @@ Its fleece was white as snow.
And everywhere that Mary went.
..........
Cheese Burger
*** Python #2:
**** ex8
learn about a more complicated formatting of a string. {}

View File

@ -1,19 +0,0 @@
*python
*** Python #1:
**** ex0
**** ex1
>>> print("Hello World!")
... print("Hello Again")
... print("I like typing this.")
... print("This is fun.")
... print('Yay! Printing.')
... print("I'd much rather you 'not'.")
... print('I "said" do not touch this.')
Hello World!
Hello Again
I like typing this.
This is fun.
Yay! Printing.
I'd much rather you 'not'.
I "said" do not touch this.