本篇文章给大家谈谈python快速编程入门第二版课后编程题答案,以及python快速编程入门第二版课后题答案,希望对各位有所帮助,不要忘了收藏本站喔。
8-1
def display_message():
print("study function")
display_message()
8-2
def favorite_book(title):
print(f"One of my favorite books is {title.title()}")
book = input('whatis your favorite book?')
favorite_book(book)
8-3
def make_shirt(size, word):
print(f"This t-shirt is {size} and is printed with {word} characters")
word = input("it is printed your shirt:")
size = input("size:")
make_shirt(size, word)
8-4
#打印 I Love python
def make_shirt(size, word='I love python'):
print(f"This t-shirt is {size} and is printed with {word} characters")
make_shirt(size=&#