可见,千万不要在实例上修改类属性,它实际上并没有修改类属性,而是给实例绑定了一个实例属性。
与其这么说 不如说类属性只能类自己修改 实例不能修改类属性
与其这么说 不如说类属性只能类自己修改 实例不能修改类属性
2016-06-24
setattr(object, name, value)
The arguments are an object, a string and an arbitrary value. The string may name an existing attribute or a new attribute. For example, setattr(x, 'foobar', 123) is equivalent to x.foobar = 123.
The arguments are an object, a string and an arbitrary value. The string may name an existing attribute or a new attribute. For example, setattr(x, 'foobar', 123) is equivalent to x.foobar = 123.
2016-06-24
def format_name(s):
return s.title()
print map(format_name, ['adam', 'LISA', 'barT'])
其中函数format_name(s)里面的s指向list['adam', 'LISA', 'barT'],是对list进行操作的。
title()函数实现字符串首字母大写,其余小写的功能
return s.title()
print map(format_name, ['adam', 'LISA', 'barT'])
其中函数format_name(s)里面的s指向list['adam', 'LISA', 'barT'],是对list进行操作的。
title()函数实现字符串首字母大写,其余小写的功能
2016-06-23
import math
def is_sqr(x):
return math.sqrt(x) in [1,2,3,4,5,6,7,8,9,10]
print filter(is_sqr, range(1, 101))
def is_sqr(x):
return math.sqrt(x) in [1,2,3,4,5,6,7,8,9,10]
print filter(is_sqr, range(1, 101))
2016-06-22
解释器内部会将**kw拆分成对应的dict.
setattr()方法接受3个参数:setattr(对象,属性,属性的值)
setattr(self,k,v)相当于self.k = v
kw.iteritems()历遍字典kw的所有key和value,分别匹配k,v
setattr()方法接受3个参数:setattr(对象,属性,属性的值)
setattr(self,k,v)相当于self.k = v
kw.iteritems()历遍字典kw的所有key和value,分别匹配k,v
2016-06-22
你可以理解为path是包os中的一个模块,想要使用path中的函数时可以只导入os包:import os 也可以导入path模块from os import path 区别在于使用的时候一个需要 os.path.函数名 另一个只需要 path.函数名
2016-06-22
import time
def performance(f):
def fn(x):
print 'call factorial() in'
return f(x)
return fn
@performance
def factorial(n):
return reduce(lambda x,y: x*y, range(1, n+1))
print factorial(10)
def performance(f):
def fn(x):
print 'call factorial() in'
return f(x)
return fn
@performance
def factorial(n):
return reduce(lambda x,y: x*y, range(1, n+1))
print factorial(10)
2016-06-22
print filter(lambda s: s and len(s.strip())>0, ['test', none, '', 'str', ' ', 'end'])
2016-06-21
print sorted(['bob', 'about', 'Zoo', 'Credit'],key=str.lower)
2016-06-21
答案判定好死板啊!要写成
return "(Student:" + self.name + ", " + self.gender + ", " + str(self.score) + ")"
这种模式才给过
return "(Student:" + self.name + ", " + self.gender + ", " + str(self.score) + ")"
这种模式才给过
2016-06-21
def prod(x, y):
return x*y
print reduce(prod, [2, 4, 5, 7, 12])
return x*y
print reduce(prod, [2, 4, 5, 7, 12])
2016-06-21