8-1 消息
代码:
def display_message():
print("I learn how to write a function")
def main():
display_message()
if __name__ == '__main__':
main()
输出:
8-2 喜欢的图书
代码:
def favorite_book(book_name):
print("One of my favorite books is 《" + book_name.title() + "》")
favorite_book("c++ primer plus")
输出:
8-3 T恤
代码:
def make_shirt(size, string):
print("The size of T_shirt is " + size)
print("And the string on it is " + string)
make_shirt("L", "I love China")
输出:
8-4大号T恤
代码:
def make_shirt(size = "L", string = "I love Python"):
print("The size of T_shirt is " + size)
print("And the string on it is " + string)
make_shirt()
make_shirt(size = "M")
make_shirt(string = "I love c++")
输出:
8-9 魔术师
代码:
def show_magicians(magicians):
for magician in magicians:
print(magician)
four_magicians = ["Bob", "Jack", "Jason", "Mary"]
show_magicians(four_magicians)
输出: