IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> Python编程:从入门到实践第二版答案(第六章) -> 正文阅读

[Python知识库]Python编程:从入门到实践第二版答案(第六章)

?7-1

car = input("which car do you want to lease? ")
print(f"Let me see if i can find you a {car}")

7-2

people = input("How many of you are there? ")
people = int(people)
if people <= 8:
    print("Welcome!")
else:
    print("sorry,We don't have any tables available.")

7-3

num = input("please input a number.And i will tell you if it is a multiple of 10: ")
num = int(num)
if num%10 == 0:
    print("it is a multiple of 10.")
else:
    print("sorry,it is not a multiple of 10.")

7-4

word = ""
while word != "quit":
    word = input("Enter the pizza ingredients you want: ")
    if word != "quit":
        print(f"{word} will be added.")

?7-5

while True:
    age = input("Your age: ")
    if age == "quit":
        break
    age = int(age)
    if age < 3:
        print("You are free.ヽ(?゚▽゚)ノ")
    elif age < 13:
        print("Your ticket is 13.")
    else:
        print("Your ticket is 15")

7-6

#使用active,另外两项7-4 7-5均有使用
active = True
while active:
    word = input("Enter the pizza ingredients you want: ")
    if word != "quit":
        print(f"{word} will be added.")
    else:
        active = False

7-7

active = True
while active:
    print('1')

?7-8

Sandwich_orders = ['tuna', 'button', 'chicken']
finished_sandwich = []
while Sandwich_orders:
    sandwich = Sandwich_orders.pop()
    print(f"I made your {sandwich} sandwich.")
    finished_sandwich.append(sandwich)
print(finished_sandwich)

7-9

Sandwich_orders = ['pastrami', 'tuna', 'button', 'pastrami', 'chicken', 'pastrami']
print("The pastrami was sold olt.")
while 'pastrami' in Sandwich_orders:
    Sandwich_orders.remove('pastrami')
print(Sandwich_orders)

7-10

active = True
favorite_place = {}
while active:
    name = input("what's your name? ")
    place = input("If you could visit one place in the world,where would you go: ")
    favorite_place[name] = place
    ans = input("Is there anyone next?(yes/no)")
    if ans == "no":
        break
for name, place in favorite_place.items():
    print(f"{name} favorite place is {place}")

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2021-12-04 13:24:12  更:2021-12-04 13:26:05 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 2:30:24-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码