【CS61A-Fall-2020】学习记录三 Lab1 题解思路分享
前言
观前提示,笔者写的代码答案放在 GitHub仓库 中,此处仅记录过程与心得。
此外,请最好在尝试独立完成该任务后再看本文,否则就很可能失去了体验本项目精华的机会
正文
Q1: WWPD: Control
Q2: WWPD: Veritasiness
Q3: Debugging Quiz!
前三问分别问函数执行结果,python中布尔运算结果,程序报错最可能情况
所以就摘录部分令我印象深刻的知识点也就是做错的(悲
复制代码
1 | >>> def how_big(x): |
“这题好简单啊,有什么难的吗?不就是big?”
是big,也不是
仔细看,elif x>5: 下面是return ‘big’不是print
所以答案是’big’
而对于布尔运算则有两种代表情况
1 | >>> 1 and 3 and 6 and 10 and 15 |
在结果为对的布尔运算中,返回最后对的部分,
所以这题答案为15
而结果为错的布尔运算中,则返回第一个错的部分
Q4: Falling Factorial
Let’s write a function falling, which is a “falling” factorial that takes two arguments, n and k, and returns the product of k consecutive numbers, starting from n and working downwards.
1 | def falling(n, k): |
题目大意,接收两参数n,k,执行k次,从n向下递减数连乘,并规定乘0次的结果为1
解题过程,先定个result=1,并返回result,然后以k>0为条件建立循环,并在其中用n乘result,n–
Q5: Sum Digits
Write a function that takes in a nonnegative integer and sums its digits. (Using floor division and modulo might be helpful here!)
1 | def sum_digits(y): |
题目大意,输入一个正数,返回该数各位之和
解题过程,循环条件为该数大于零,不断取余并用10整除该数,再将余数相加
Q6: WWPD: What If?
该题要注意的是,if如果有满足的条件,后面的elif,else不会执行,同时还要看好if和else的对应关系。
Q7: Double Eights
Write a function that takes in a number and determines if the digits contain two adjacent 8s.
1 | def double_eights(n): |
题目大意,检测一个给定数字有无两个紧挨的8
解题过程,循环取余,判断数字是否为8,是则让计数器加一,计数器为2时结果为真,停止循环,最后计数器仍不为2则为假。易错点是数字非8时,记得将计数器归0
小结
题不难,但让我很好的领略了一些python的特点,期待后续的学习