Trainning-day01回顾 1.who :查看登录到系统的用户信息 2.pwd :查看当前所在路径 3.ls :查看当前目录的内容 ls -l ls -a ls -la / ls -l -a ls -l /home/tarena/AID1812 #显示某个目录下内容 4.路径 相对路径:不以 / 开头的目录 绝对路径:以 / 开头的目录 5.cd :切换到目录 cd .. 到上一级目录 cd 到用户主目录 cd / 到根目录 cd - 最近访问的两个目录之间来回切换 6.mkdir 创建…
1 标准输出 python3利用 print() 来实现标准输出 def print(self, *args, sep=' ', end='\n', file=None): # known special case of print """ print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) Prints the values to a stream, or to sys.stdout by d…
Python中的break和continue用法基本一样 break和continue都是用在while和for循环中,而不是跳出if...elif..else的判断语句中,跳出是直接跳出语句所在的while或for循环 continue语句:用于跳出本次循环,但是循环仍在继续 break语句:用于跳出整个循环,也就是跳出该break代码所在的循环 continue: for num in range(10): if num == 5: continue print(num) 结果: 0 1 2…
列表推导式和生成器表达式 列表推导式,生成器表达式1,列表推导式比较直观,占内存2,生成器表达式不容易看出内容,省内存. [ 变量(加工后的数据) for 变量i in 可迭代的数据类型 ] 列表的推导式, 循环模式[ 变量(加工后的数据) for 变量i in 可迭代的数据类型 if 条件] 列表的推导式, 筛选模式 1.[变量(加工后的变量) for 变量 in iterable] 循环模式 l = [i for i in range(10)] print(l) l1 = ['选项%…
Problem 9.17 Feather in tornado. In this project you will learn to use Newton's laws and the force model for air resistance in a wind field to address the motion of a light object in strong winds. We start from a simple model without wind and gradual…