差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评差评
2016-05-26
class Person(object):
__count = 0
def __init__(self, name):
self.name = name
Person.__count+=1
print Person.__count
p1 = Person('Bob')
p2 = Person('Alice')
__count = 0
def __init__(self, name):
self.name = name
Person.__count+=1
print Person.__count
p1 = Person('Bob')
p2 = Person('Alice')
2016-05-25
import math
def is_sqr(x):
return int(math.sqrt(x)) >= math.sqrt(x)
print filter(is_sqr,range(1,101))
def is_sqr(x):
return int(math.sqrt(x)) >= math.sqrt(x)
print filter(is_sqr,range(1,101))
2016-05-25
def calc_prod(s1):
def t():
s=1
for x in s1:
s=s*x
return s
return t
f = calc_prod([1, 2, 3, 4])
print f()
不知道为什么,在我自己这里测试,总告诉我1st无效,我把它换成s1就通过了。
def t():
s=1
for x in s1:
s=s*x
return s
return t
f = calc_prod([1, 2, 3, 4])
print f()
不知道为什么,在我自己这里测试,总告诉我1st无效,我把它换成s1就通过了。
2016-05-25
import math
def add(x, y, f):
return sqrt((x)) + sqrt(f(y))
print add(25, 9,abs)
def add(x, y, f):
return sqrt((x)) + sqrt(f(y))
print add(25, 9,abs)
2016-05-23