python 用法测试
Posted xunhanliu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 用法测试相关的知识,希望对你有一定的参考价值。
Python 3.5.6
1、js风格的回调测试
1 def b(): 2 print(‘123‘) 3 def a(fn): 4 if callable(fn): 5 fn() 6 a(b) 7 8 class Sample: 9 def q(self): 10 print(‘q‘) 11 def w(self,fn): 12 if callable(fn): 13 fn() 14 def print(self): 15 self.w(self.q) 16 Sample().print() 17 Sample().w(b) 18 a(Sample().q)
结果:符合预期
以上是关于python 用法测试的主要内容,如果未能解决你的问题,请参考以下文章