Chapter7 用户输入和while循环
- 7-1 汽车租赁。
1 | car = input("Let me see if I can find you a Subaru:\n") |
- 7-3 10的整数倍。
1 | number = input("Please input a number:\n") |
- 7-5 电影票。
1 | while True: |
- 7-8 熟食店。
1 | sandwich_orders = ['pap','apple','banana','barber'] |
Chapter8 函数
- 8-1 函数。
1 | def display_msg(): |
- 8-2 喜欢的图书。
1 | def favorite_book(title): |
- 8-4 大号T恤。
1 | def make_shirt(font='I love Python',size ='big'): |
- 8-5 城市。
1 | def describe_city(city,country='China'): |
- 8-6 城市名。
1 | def city_country(city,country): |
- 8-8 用户的专辑。
1 | def make_album(singer,album): |