python函数之进阶 1:函数嵌套 一:什么是函数嵌套 在一个函数内又定义了另外一个函数 二:函数定义 def foo(): def bar() print('from bar') bar() foo() # 这个是通过foo函数调用里面的bar函数 def foo(): def f2(): pr ...
分类:
编程语言 时间:
2020-06-17 23:28:25
阅读次数:
79
Python基础之函数 1:函数 一:什么是函数 函数就是对某一个功能的代码,进行打包。类似于一修车师傅有工具箱一样,需要用什么工具直接拿来用就行。 二:为什么要有函数 当需要重复的用一些功能的时候,就可以直接调用,不用再复制粘贴 三:函数的分类 三.一:内置函数 print,id,map,filt ...
分类:
编程语言 时间:
2020-06-16 23:10:43
阅读次数:
90
Heredoc 结构的字符串与双引号("")字符串对比分析 <?php $str = <<<EOD Example of string spanning multiple lines using heredoc syntax. EOD; /* 含有变量的更复杂示例 */ class foo { va ...
分类:
Web程序 时间:
2020-06-15 22:52:39
阅读次数:
86
一、成员修饰符 共有成员 私有成员, __字段名 - 无法直接访问,只能间接访问 class Foo: def __init__(self,name,age): self.name = name #self.age = age self.__age = age obj = Foo() obj.nam ...
分类:
其他好文 时间:
2020-06-14 20:25:59
阅读次数:
60
print(' 无参函数 ') 示范一: def bar(): print('from bar') def foo(): bar() print('from foo') foo() #from bar from foo 示范二: def foo(): bar() print('from foo') ...
分类:
其他好文 时间:
2020-06-14 12:52:08
阅读次数:
50
今天从ACL2020抓下来一堆跟Generation相关的论文,读了一天只读完了3篇,而且读得还不是很透彻,看来读论文的功力需要提升啊。 第一篇:One Size Does Not Fit All: Generating and Evaluating Variable Number of Keyph ...
分类:
其他好文 时间:
2020-06-13 23:29:14
阅读次数:
201
今天工作遇到个关于Promise的小问题,结果是自己太新手,后来解决了 如 function test() { return new Promise (resolve, reject) { reject('超时') } } 使用了await, 必须catch才能让阻塞放开 async functio ...
分类:
其他好文 时间:
2020-06-13 19:29:17
阅读次数:
68
git版本管理工具大家都用过,但时有时候我们不需要提交所有的文件到版本管理中,比如:node_modules等;这时我们便会用到`.gitignore`文件,来配置规则以忽略我们不需要追踪的文件; ...
分类:
其他好文 时间:
2020-06-13 15:50:44
阅读次数:
117
this的绑定方式: 默认绑定(非严格模式下this指向全局对象, 严格模式下this会绑定到undefined) 隐式绑定,this 永远指向最后调用它的那个对象(如 obj.foo()的调用方式, foo内的this指向obj) 显示绑定(apply、call、bind) new绑定 箭头函数绑 ...
分类:
Web程序 时间:
2020-06-12 19:59:45
阅读次数:
92
练习 # 2.看代码写结果 # # def func(): # return 1,2,3 # # val = func() # print( type(val) == tuple ) # print( type(val) == list ) # # True # # False # 3.看代码写结果 ...
分类:
编程语言 时间:
2020-06-11 21:49:17
阅读次数:
62