Quiz 7: Files | Python for Everybody 配套练习_解题记录

news2024/11/25 16:55:36

文章目录

  • 课程简介
      • Quiz 7: Files
    • 单选题(1-10)
    • 编程题
      • Exercise 7.2


课程简介

Python for Everybody 零基础程序设计(Python 入门)

  • This course aims to teach everyone the basics of programming computers using Python. 本课程旨在向所有人传授使用 Python 进行计算机编程的基础知识。
  • We cover the basics of how one constructs a program from a series of simple instructions in Python. 我们介绍了如何通过 Python 中的一系列简单指令构建程序的基础知识。
  • The course has no pre-requisites and avoids all but the simplest mathematics. Anyone with moderate computer experience should be able to master the materials in this course. 该课程没有任何先决条件,除了最简单的数学之外,避免了所有内容。任何具有中等计算机经验的人都应该能够掌握本课程中的材料。
  • This course will cover Chapters 1-5 of the textbook “Python for Everybody”. Once a student completes this course, they will be ready to take more advanced programming courses. 本课程将涵盖《Python for Everyday》教科书的第 1-5 章。学生完成本课程后,他们将准备好学习更高级的编程课程。
  • This course covers Python 3.

在这里插入图片描述

coursera

Python for Everybody 零基础程序设计(Python 入门)

Charles Russell Severance
Clinical Professor

在这里插入图片描述

个人主页
Twitter

在这里插入图片描述

University of Michigan


课程资源

coursera原版课程视频
coursera原版视频-中英文精校字幕-B站
Dr. Chuck官方翻录版视频-机器翻译字幕-B站

PY4E-课程配套练习
Dr. Chuck Online - 系列课程开源官网


Quiz 7: Files

We learn how to open data files on your computer and read through the files using Python.


单选题(1-10)

  1. Given the architecture and terminology we introduced in Chapter 1, where are files stored?
  • Motherboard
  • Secondary memory
  • Main Memory
  • Machine Language
  1. What is stored in a “file handle” that is returned from a successful open() call?
  • The handle contains the first 10 lines of a file
  • The handle has a list of all of the files in a particular folder on the hard drive
  • The handle is a connection to the file’s data
  • All the data from the file is read into memory and stored in the handle
  1. What do we use the second parameter of the open() call to indicate?
  • How large we expect the file to be
  • Whether we want to read data from the file or write data to the file
  • The list of folders to be searched to find the file we want to open
  • What disk drive the file is stored on
  1. What Python function would you use if you wanted to prompt the user for a file name to open?
  • alert()
  • file_input()
  • gets()
  • input()
  1. What is the purpose of the newline character in text files?
  • It allows us to open more than one files and read them in a synchronized manner
  • It adds a new network connection to retrieve files from the network
  • It indicates the end of one line of text and the beginning of another line of text
  • It enables random movement throughout the file
  1. If we open a file as follows:
xfile = open('mbox.txt')
  • [ ]What statement would we use to read the file one line at a time?
  • while line = xfile.gets
  • while (<xfile>) {
  • while ((line = xfile.readLine()) != null) {
  • for line in xfile:
  1. What is the purpose of the following Python code?
fhand = open('mbox.txt')
x = 0
for line in fhand:
       x = x + 1
print(x)
  • Count the lines in the file ‘mbox.txt’
  • Remove the leading and trailing spaces from each line in mbox.txt
  • Reverse the order of the lines in mbox.txt
  • Convert the lines in mbox.txt to lower case
  1. If you write a Python program to read a text file and you see extra blank lines in the output that are not present in the file input as shown below, what Python string function will likely solve the problem?
From: stephen.marquard@uct.ac.za
 
From: louis@media.berkeley.edu
 
From: zqian@umich.edu
 
From: rjlowe@iupui.edu
  • rstrip()
  • startswith()
  • trim()
  • ljust()
  1. The following code sequence fails with a traceback when the user enters a file that does not exist. How would you avoid the traceback and make it so you could print out your own error message when a bad file name was entered?
fname = input('Enter the file name: ')
fhand = open(fname)
  • try / catch / finally
  • setjmp / longjmp
  • try / except
  • signal handlers
  1. What does the following Python code do?
fhand = open('mbox-short.txt')
inp = fhand.read()
  • Prompts the user for a file name
  • Reads the entire file into the variable inp as a string
  • Turns the text in the file into a graphic image like a PNG or JPG
  • Checks to see if the file exists and can be written

编程题

Exercise 7.2

题目:
Write a program that prompts for a file name, then opens that file and reads through the file, looking for lines of the form:

X-DSPAM-Confidence:    0.8475

Count these lines and extract the floating point values from each of the lines and compute the average of those values and produce an output as shown below.
Do not use the sum() function or a variable named sum in your solution.
You can download the sample data at http://www.py4e.com/code3/mbox-short.txt when you are testing below enter mbox-short.txt as the file name.

[Desired Output]
Average spam confidence: 0.7507185185185187

解题代码:

# Use the file name mbox-short.txt as the file name
fname = input("Enter file name: ")
fh = open(fname)

count = 0
xc = 0
for line in fh:
   if not line.startswith("X-DSPAM-Confidence:"):
       continue
   else:
   	n = line.find(':') + 1
   	count += 1
   	xc += float(line[n:])

print("Average spam confidence:", xc / count)

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/702662.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

项目——学生信息管理系统1

目录 创建项目 1. 修改Eclipse的编码为UTF-8,具体参考给的文档 1.1 设置代码自动保存 2. 创建Java项目 分包 添加数据库驱动jar包依赖 复制数据库驱动jar包到lib目录下 添加依赖 创建登陆页面 在 org.xingyun.view 包下创建 LoginFrm 选择 WindowBuilder下的 Swing D…

oracle 重复启动监听程序故障

又是一起 oracle 无法连接问题&#xff0c;检查配置都是正常的。 原来是碰到一个oralce的bugl了。 还真就是这个问题&#xff0c;子进程一kill掉&#xff0c;就恢复了。

微服务实战项目-学成在线-课程发布模块

学成在线-课程发布模块 1 模块需求分析 1.1 模块介绍 课程信息编辑完毕即可发布课程&#xff0c;发布课程相当于一个确认操作&#xff0c;课程发布后学习者在网站可以搜索到课程&#xff0c;然后查看课程的详细信息&#xff0c;进一步选课、支付、在线学习。 下边是课程编辑…

视频解说小程序看点小程序搭建上线,流量主对接实现广告收益

什么是视频解说小程序&#xff1f; 影视剪辑和解说&#xff0c;我们都知道有这类的抖音号&#xff0c;这时候就用到我们小程序了&#xff0c;流量主产生了收益。把视频解说上传到小程序&#xff0c;设置为广告观看&#xff0c;这样引导用户去小程序看&#xff0c;就产生一个广告…

(一)等值线 (Spatial Analyst)

等值线 (Spatial Analyst) 1.摘要 根据栅格表面创建等值线(等值线图)的线要素类。 等值线是用于连接各类等值点(如高程、温度、降雨量、污染或大气压力)的线。线的分布显示表面值的变化方式。值的变化量越小,线的间距就越大。值上升或下降得越快,线的间距就越小。 2.…

基于单片机的厨房安全监测

功能介绍 以STM32单片机作为主控系统&#xff1b; OLED液晶显示当前检测的气体浓度&#xff0c;温度&#xff0c;是否有火等信息&#xff1b; 按键可以设置温度上限、可燃气体浓度上限&#xff1b; 当温度超过我们设置自动开启风扇进行降温&#xff1b; 当检测到天然气泄露后蜂…

ROS学习篇之基础知识(一)-环境的安装

文章目录 一.ros的安装1.ros的一键安装&#xff1a;2.ros的验证是否安装成功3.安装导航必备的库&#xff1a; 二.VScode的配置1.安装ros插件2.安装cmake插件 三.VScode的简单使用1.快速注释&#xff1a; 四.pycharm的安装 一.ros的安装 1.ros的一键安装&#xff1a; wget htt…

shiro框架 shiro补充知识MD5加密

01.在用户登录时候&#xff0c;需要输入用户名和密码。 用户名用数据库的select来查询是否存在。 密码比较私密&#xff0c;就是后台的程序员也不可以查看&#xff0c;这需要加密。 一般的加密算法是MD5 02.例如&#xff1a; SecurityUtils 类是shiro框架的一个类。SecurityUt…

LabVIEW开发牵引控制动态仿真器

LabVIEW开发牵引控制动态仿真器 车辆牵引力控制包括轮胎在横向和纵向上的牵引力控制&#xff0c;以获得所需的车辆运动。决定轮胎牵引力的力来自路面和轮胎之间的相互作用&#xff0c;它们分解为两个组成部分&#xff1a;一个在横向&#xff0c;另一个在纵向。第一个组件取决于…

MSP432学习笔记11:定时器A的结构\基地址\函数汇总理解

今日得以继续我的电赛MSP432学习之路&#xff1a;所用开发板MSP432P401R 定时器是任何单片机开发板十分重要的模块&#xff0c;在几日的学习使用过程中&#xff0c;本人也对其使用原理等产生过许多疑问&#xff0c;他究竟是怎么存储计数值、捕获值的&#xff1f;一个定时器四个…

基于Java校园车辆管理系统设计实现(源码+lw+部署文档+讲解等)

博主介绍&#xff1a;✌全网粉丝30W,csdn特邀作者、博客专家、CSDN新星计划导师、Java领域优质创作者,博客之星、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于Java技术领域和毕业项目实战✌ &#x1f345;文末获取源码联系&#x1f345; &#x1f447;&#x1f3fb; 精彩专…

Arduino Proteus仿真DHT11自动浇水浇花浇土装置-0048

Arduino Proteus仿真DHT11自动浇水浇花浇土装置-0048 Proteus仿真小实验&#xff1a; Arduino Proteus仿真DHT11自动浇水浇花浇土装置-0048 功能&#xff1a; 硬件组成&#xff1a;ARDUINO -UNO-R3开发板、 LCD1602 、DHT11温湿度传感器、LED灯、电机模拟水泵、2个按键 1.单…

【详解代码】vue element el-select选择器多选下拉框实现全选功能和取消全选

目录 解决方法 下拉项增加一个【全部】⭐️效果图如下&#xff1a;默认全选情况一&#xff1a;下拉选项全都勾选时&#xff0c;【全部】自动勾选&#xff1b;情况二&#xff1a;下拉选项全都未勾选时&#xff0c;点击【全部】后&#xff0c;所有下拉选项全部勾选&#xff1b;情…

V90伺服驱动器实现一键优化的具体方法

V90伺服驱动器实现一键优化的具体方法 目的:解决运行中震动、异响等问题。 前提条件: 使用一键自动优化的前提:  对于带绝对值编码器的电机:位置限制由p29027决定,至少为180  对于带增量式编码器的电机:在开始优化时必须允许电机有2圈的自由旋转,p29027至少为720 使…

Linux挂载新磁盘到服务器新目录-干货分享

确认磁盘 新建分区 输入m查看帮助&#xff1a; 输入n新建分区&#xff0c;输入p建立分区&#xff08;其他默认将全部空间进行分配&#xff09;&#xff1a; 输入w进行保存 lsblk再次确认分配完成后的新分区&#xff1a; 格式化分区 明确文件系统格式&#xff0c;一般有xf…

十四、Jenkins打包完成后,执行python脚本,将发行包打包压缩上传禅道提交版本

十四、Jenkins打包完成后&#xff0c;执行脚本&#xff0c;将版本发行包压缩上传禅道提交禅道版本 十三、禅道登录/提交版本/编辑版本接口 &#xff0c;书接上回&#xff0c;在禅道中注册一个Jenkins账号&#xff0c;利用禅道的接口&#xff0c;提交到禅道中&#xff0c;具体代…

数据仓库系列:StarRocks 入门培训教程

文章目录 1. 什么是StarRocks?1.1. 适用场景1.2. [产品特性](https://docs.starrocks.io/zh-cn/latest/introduction/Features) 2. 系统架构2.1. 系统架构2.1.1. 整体架构2.1.2. 高可用实现方式 2.2. 数据如何管理&#xff1f; 3. 表模型3.1. 明细模型3.2. 聚合模型3.3. 更新模…

冷链NO.1技能,物流人第一天就应该学会!

储藏室的温湿度是许多行业中的关键因素&#xff0c;如医疗、食品、冷链物流等。确保储藏室内的温湿度在规定的范围内是保护物品品质和价值的关键。 储藏室温湿度远程监控是一项重要的任务&#xff0c;特别适用于需要实时掌握储藏室环境条件的场景。通过远程监控&#xff0c;可以…

凸优化理论基础

目录 一&#xff0c;仿射集 1&#xff0c;仿射集(affine set) 2&#xff0c;仿射组合(affine combination) ​编辑 3&#xff0c;仿射包(affine hull) 二&#xff0c;凸集 1&#xff0c;凸集 2&#xff0c;凸组合 3&#xff0c;凸包(convex hull) 本文部分内容来自网友…

JavaEE(系列22) -- IP协议和以太网

目录 1. IP协议 1.1 协议头格式 1.2 解决IPV4地址不够用的问题 1.3 IP地址管理 1.4 路由选择 2. 以太网 (数据链路层) 1. IP协议 P协议是位于OSI模型中第三层(网络层)的协议, 在这层上工作的不止这一个协议, 但IP协议是网络层传输所使用的最主流的一种协议, 有IPv4和IPv6两…