# 递推法def sum01(n): result = 0 for i in range(1, n+1): result += i return result# 递归法def sum02(n): if n == 1: return 1 els...
自定义函数:def myfun(args1,args2):函数体return value
2.在一个类中,只能有一个__init__构造方法起作用(有多个的时候,最后一个起作用)
1、def关键字,创建函数 2、函数名 3、() 固定搭配 4、函数体 5、返回值
#如果是windows平台一般还要加上一个小r,意思是取消路径中/的转义功能(不用写//了)#默认t,指的是文本文件,文本里面存放的是字符,因此涉及到字符编码,如果不指定使用什么字符编码打开就按默认操作系统默认编码打卡,windows默...
msg = self.cooked_string + " "+msg + "."+str(self.cooked_level)
1.循环&条件控制 注意:每个条件后面要使用冒号(:),表示接下来是满足条件后要执行的语句块。使用缩进来划分语句块,相同缩进数的语句在一起组成一个语句块。break 语句可以跳出 for 和 while 的循环体。continue语句被用来...
3. __enter__ 将在进入with语句时调用并返回由 as 变量管理的对象
self.food = that #属性food 绑定到that, self.food 可以在其他类内函数调用
Given an array of integers, return indices of the two numbers such that they add up to a specific target.