为梦而战
全部博文(185)
发布时间:2016-12-16 10:15:10
class A(object): def __init__(self): print 'Enter A' print 'Leave A' pass def myprint(self): print 'Enter print of A' print 'Lea.........【阅读全文】
发布时间:2016-12-14 17:11:47
在.vim下新建目录after/ftplugin/,并将相应语言的vim配置文件(比如python.vim)放到该目录下即可。......【阅读全文】
发布时间:2016-12-05 10:42:46
$cat yaml.ymlmylist: - one - two - three$sudo python -c 'import yaml; fh = open("yaml.yml", "r"); print(yaml.safe_load(fh.read()))'{'mylist': ['one', 'two', 'three']}......【阅读全文】
发布时间:2015-09-01 13:43:05
http://django-chinese-docs.readthedocs.org/en/latest/
......【阅读全文】