已采纳回答 / 如果撞上假如
有的包安装的时候 需要vc 2008或者其他版本,不想安装的话可以装个插件http://www.microsoft.com/en-us/download/details.aspx?id=44266
2015-07-07
**kw是关键字参数,用于字典
iteritems()用于字典kw的遍历
setattr(self, k, v)就等价于self.k = v
综上就是,遍历dict kw 中的属性,给每个属性设置了属性值
iteritems()用于字典kw的遍历
setattr(self, k, v)就等价于self.k = v
综上就是,遍历dict kw 中的属性,给每个属性设置了属性值
2015-07-05
如果用import os.path导入,那么调用的时候是这样:os.path.isdir(...)
如果用from os.path import isdir,isfile导入,可以直接调用:isdir(...)
如果用from os.path import isdir,isfile导入,可以直接调用:isdir(...)
2015-07-04
def format_name(s):
return s.lower().capitalize()
print map(format_name, ['adam', 'LISA', 'barT'])
return s.lower().capitalize()
print map(format_name, ['adam', 'LISA', 'barT'])
2015-07-04