为梦而战
全部博文(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-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/
......【阅读全文】
发布时间:2015-08-05 10:14:41
<p><strong>这个星期开始学习Python了,因为看的书都是基于Python2.x,而且我安装的是Python3.1,所以书上写的地方好多都不适用于Python3.1,特意在Google上search了一下3.x和2.x的区别。特此在自己的空间中记录一下,以备以后查找方便,也可以分享给想学习Python的friends.</strong></p><p><strong></strong></p>.........【阅读全文】