函数的return 语句只能返回一个值,可以是任何类型. 因此,我们可以“返回一个 tuple类型,来间接达到返回多个值 ”. 例: x 除以 y 的余数与商的函数 def F1 ( x, y ): a = x % y b = (x-a) / y return ( a,b ) # 也可以写作 return a, b (c, d )= F1( 9, 4) # 也可以写作 c , d = F1 ( 9, 4 ) p
衡量运行时间 很多时候你需要计算某段代码执行所需的时间,可以使用 time 模块来实现这个功能. import time startTime = time.time() # write your code or functions calls endTime = time.time() totalTime = endTime - startTime print("Total time required to execute code is =", totalTime) # output
子类继承父类属性/函数方法: #方式一:(原生方式,不建议使用) class Dongwu(object): def __init__(self,name,sex,old): self.name = name self.sex = sex self.old = old def eat(self): print("吃~~~~~~`") class Cat(Dongwu): def __init__(self,name,sex,old,num): Dongwu.__init__(self,
—— Python 函数的 return 是否是必须的? —— return [表达式] 语句用于退出函数,选择性地向调用方返回一个表达式.不带参数值的return语句返回None. 来看一段关于 return 的描述: return may only occur syntactically nested in a function definition, not within a nested class definition. If an expression list is present
enumerate 函数用于遍历序列中的元素以及它们的下标: >>> for i,j in enumerate(('a','b','c')): print i,j 0 a1 b2 c>>> for i,j in enumerate([1,2,3]): print i,j 0 11 22 3>>> for i,j in enumerate({'a':1,'b':2}): #注意字典,只返回KEY值!! print i,j 0 a1 b >&g