def f(x, y):
return x * y
print reduce(f, [2, 4, 5, 7, 12])
return x * y
print reduce(f, [2, 4, 5, 7, 12])
2019-09-27
def format_name(s):
return s[0].upper() + s[1:].lower()
print map(format_name, ['adam', 'LISA', 'barT'])
return s[0].upper() + s[1:].lower()
print map(format_name, ['adam', 'LISA', 'barT'])
2019-09-27
已采纳回答 / 椰汁菠萝
由于python是根据书写格式来判断代码块的,那么怎么写空代码块呢?就是pass了,占位用的,就是表示我是个空的,这样阅读性也高,pass英文是通过当你要写一个空方法,空类,空if,都可以用pass
2019-09-27
貌似使用if判断句可以得出平方根是否为整数def is_sqr(x): r=int(math.sqrt(x)) if math.sqrt(x)-r==0: return x
2019-09-27
课程中的例子是错的,大家可以自己敲一下,多继承的情况下,调用super(D,self).__init__(a),执行的是多继承中,第一个父类的__init__方法,其他父类并不会执行,所以打印结果中,没有C init
2019-09-26
super(Student,self)返回的应该是父类的实例;
super(Student,self).__init__(name,gender),这里应该是调用的父类的__init__,那么父类方法的self是父类实例自己,而不是student的self
super(Student,self).__init__(name,gender),这里应该是调用的父类的__init__,那么父类方法的self是父类实例自己,而不是student的self
2019-09-26
最赞回答 / 我滴天呐
t=(t2-t1)*1000 if unit=='ms' else (t2-t1)可以理解为:if unit=='ms': t = (t2-t1)*1000else: t = t2 - t1
2019-09-25
import math
def isvaild(x):
return math.sqrt(x).is_integer()
print filter(isvaild,range(1,101))
def isvaild(x):
return math.sqrt(x).is_integer()
print filter(isvaild,range(1,101))
2019-09-25