zoukankan      html  css  js  c++  java
  • python从入门到实践课后习题第四章

    """
    4-1 比萨:想出至少三种你喜欢的比萨,将其名称存储在一个列表中,再使用for循环将每种比萨的名称都打印出来。
    修改这个 for 循环,使其打印包含比萨名称的句子,而不仅仅是比萨的名称。对于每种比萨,都显示一行输出,
    如 “I like pepperoni pizza” 。在程序末尾添加一行代码,它不在 for 循环中,指出你有多喜欢比萨。
    输出应包含针对每种比萨的消息,还有一个总结性句子,如 “I really love pizza!” 。
    """
    
    pizzas = ['chicken', 'durian', 'tomato']
    
    for pizza in pizzas:
        print("I like " + pizza + " pizza!~")
    
    print("I really love pizza!")
    """
    4-2 动物 :想出至少三种有共同特征的动物,将这些动物的名称存储在一个列表中,再使用 for 循环将每种动物的名称都打印出来。
    修改这个程序,使其针对每种动物都打印一个句子,如 “A dog would make a great pet” 。
    在程序末尾添加一行代码,指出这些动物的共同之处,如打印诸如 “Any of these animals would make a great pet!” 这样的句子。
    """
    
    pets = ['cat', 'dog', 'pig']
    
    for pet in pets:
        print("A " + pet + " would make a great pet!")
    
    print("Any of these animals would make a great pet")
    """
    4-3 数到 20  :使用一个 for 循环打印数字 1~20 (含)。
    """
    
    nums = list(range(1, 21))   # 直接生成一个1-20的数值列表
    print(nums)
    
    
    for num in nums:
        print(num)
    """
    4-4 创建一个列表,其中包含数字 1~1 000 000 ,再使用一个 for 循环将这些数字打印出来
    (如果输出的时间太长,按 Ctrl + C 停止输出,或关闭输出窗口)。
    """
    
    nums = list(range(1, 1000001))
    
    for num in nums:
        print(num)
    """
    4-5 计算 1~1 000 000 的总和 :创建一个列表,其中包含数字 1~1 000 000 ,再使用 min() 和 max()
    核实该列表确实是从 1 开始,到 1 000 000 结束的。另外,对这个列表
    调用函数 sum() ,看看 Python 将一百万个数字相加需要多长时间。
    """
    
    nums = list(range(1, 1000001))
    
    print(min(nums))
    print(max(nums))
    print(sum(nums))
    """
    4-6 奇数 :通过给函数 range() 指定第三个参数来创建一个列表,
    其中包含 1~20 的奇数;再使用一个 for 循环将这些数字都打印出来。
    """
    
    nums = list(range(1, 21, 2))
    print(nums)
    
    for num in nums:
        print(num)
    """
    4-7 3 的倍数 :创建一个列表,其中包含 3~30 内能被 3 整除的数字;
    再使用一个 for 循环将这个列表中的数字都打印出来。
    """
    
    nums = list(range(3, 30, 3))
    print(nums)
    
    for num in nums:
        print(num)
    """
    4-8 立方 :将同一个数字乘三次称为立方。例如,在 Python 中, 2 的立方用 2**3 表示。请创建一个列表,
    其中包含前 10 个整数(即 1~10 )的立方,再使用一个 for 循环将这些立方数都打印出来。
    """
    
    null = []               # 创建一个空列表用于接收阶乘立方后的值
    nums = range(1, 11)     # 创建一个1-10的数值列表
    
    for value in nums:      # 遍历数值列表并将每个数值阶乘立方
        num = value ** 3
        null.append(num)    # 将阶乘立方后的值添加进空列表并打印
    
    print(null)
    """
    4-9 立方解析 :使用列表解析生成一个列表,其中包含前 10 个整数的立方。
    """
    
    blank_list = []
    
    for value in range(1, 10):
        num = value ** 3
        blank_list.append(num)
    
    print(blank_list)
    """
    4-10 切片 :选择你在本章编写的一个程序,在末尾添加几行代码,以完成如下任务。
    打印消息 “The first three items in the list are:” ,再使用切片来打印列表的前三个元素。
    打印消息 “Three items from the middle of the list are:” ,再使用切片来打印列表中间的三个元素。
    打印消息 “The last three items in the list are:” ,再使用切片来打印列表末尾的三个元素。
    """
    
    food  = ['pizza', 'falafel', 'carrot cake', 'cannoli', 'ice cream']
    
    print("The first three items in the list are:")
    print(food[:3])
    
    print("Three items from the middle of the list are:")
    print(food[2:5])
    
    print("The last three items in the list are:")
    print(food[-3:])
    """
    4-11 你的比萨和我的比萨 :在你为完成练习 4-1 而编写的程序中,创建比萨列表的副本,并将其存储到变量 friend_pizzas 中,
    再完成如下任务。在原来的比萨列表中添加一种比萨。在列表 friend_pizzas 中添加另一种比萨,核实你有两个不同的列表。
    为此,打印消息 “My favorite pizzas are:” ,再使用一个 for 循环来打印第一个列表;
    打印消息 “My friend's favorite pizzas are:” ,再使用一个 for 循环来打印第二个列表。
    核实新增的比萨被添加到了正确的列表中。
    """
    pizzas = ['chicken', 'strawberry', 'beef', 'blueberries']
    friend_pizzas = pizzas[:]
    
    pizzas.append("fruit")
    friend_pizzas.append("egg")
    
    #校验pizzas是否与friend_pizzas相同
    if pizzas == friend_pizzas:
        print("True")
    else:
        print("False")
        
    print("My favorite pizzas are:")
    for pizza in pizzas:
        print(pizza)
    print("My friend's favorite pizzas are:")
    
    for friend_pizza in friend_pizzas:
        print(friend_pizza)
    """
    4-12 使用多个循环 :在本节中,为节省篇幅,程序 foods.py 的每个版本都没有使用 for 循环来打印列表。
    请选择一个版本的 foods.py ,在其中编写两个 for 循环,将各个食品列表都打印出来
    """
    my_foods = ['pizza', 'falafel', 'carrot cake']
    
    # 将my_foods的值全部赋值给friend_foods
    friend_foods = my_foods
    my_foods.append('cannoli')
    friend_foods.append('ice cream')
    print("My favorite foods are:")
    
    for food in my_foods:
        print(food)
    print("
    My friend's favorite foods are:")
    
    for friend_food in friend_foods:
        print(friend_food)
    """
    4-13 自助餐 :有一家自助式餐馆,只提供五种简单的食品。请想出五种简单的食品,并将其存储在一个元组中。
    使用一个 for 循环将该餐馆提供的五种食品都打印出来。
    尝试修改其中的一个元素,核实 Python 确实会拒绝你这样做。
    餐馆调整了菜单,替换了它提供的其中两种食品。请编写一个这样的代码块:
    给元组变量赋值,并使用一个 for 循环将新元组的每个元素都打印出来。
    """
    
    foods = ('pizza', 'falafel', 'carrot cake', 'beef', 'rice')
    # 执行下方代码可验证元组不能够修改
    # foods[0] = 'milk'
    print(foods)
    
    foods = ('beef', 'rice')
    print(foods)
  • 相关阅读:
    Spark源码走读6——Shuffle
    Spark源码走读5——Storage
    使用Gradle构建Android应用的渠道包
    轻松搞定面试中的二叉树题目
    QT中使用微软Speech API实现语音识别
    QT 相关资源(书籍、论坛、博客等。。。)整理...
    使用Cscope阅读大型工程Linux内核的源代码教程
    搭建一个免费的,无限流量的Blog----github Pages和Jekyll入门
    RSA算法原理(二)
    RSA算法原理(一)
  • 原文地址:https://www.cnblogs.com/xianyulouie/p/11041807.html
Copyright © 2011-2022 走看看