码迷,mamicode.com
首页 >  
搜索关键字:zen coding    ( 13130个结果
Python Special Syntax 8: 序列化与反序列化-->华丽丽的叫 pickle(泡菜?!)
直接上代码吧#-*-coding:utf-8import osif os.path.exists('d:\\cpickle.data'): os.remove('d:\\cpickle.data')import cPickle as Pshoplist=['apple','banana','...
分类:编程语言   时间:2014-07-07 00:09:58    阅读次数:475
python之禅 --- import this
>>> import thisThe Zen of Python, by Tim PetersBeautiful is better than ugly.Explicit is better than implicit.Simple is better than complex.Complex is...
分类:编程语言   时间:2014-07-06 23:48:26    阅读次数:303
Python Special Syntax 6:模块的__name__
#-*-coding:utf-8class Person: __privateName=None; count=0;#既可以被实例对象引用,也可以被当做静态对象引用,NND,好混乱。 def __init__(self,name): self.count+=1 ...
分类:编程语言   时间:2014-07-06 23:36:44    阅读次数:354
Python Special Syntax 7:继承
继续在上一节的类的基础上测试继承:#-*-coding:utf-8import Syntax2class Student(Syntax2.Person): def __init__(self,name,age): Syntax2.Person.__init__(self,nam...
分类:编程语言   时间:2014-07-06 23:19:57    阅读次数:310
Python Special Syntax 5:对象相关
__init__方法一样,还有一个特殊的方法__del__,它在对象消逝的时候被调用。但是很难保证这个方法究竟在什么时候运行。如果你想要指明它的运行,你就得使用del语句,#-*-coding:utf-8class Person: __privateName=None;#私有变量 cou...
分类:编程语言   时间:2014-07-05 20:28:10    阅读次数:270
Python Special Syntax 9 : 异常捕获
#-*-coding:utf-8import systry: strInput=int(raw_input('input sth.')) f=file('d:\\kjdsklslkdkl2l23223.datdk')except (EOFError,ValueError): #多重异常...
分类:编程语言   时间:2014-07-05 19:03:38    阅读次数:228
Python Special Syntax 10:列表综合,不定数参数传递(C#的params关键字)
列表综合 参见:http://woodpecker.org.cn/abyteofpython_cn/chinese/ch15s03.html#-*-coding:utf-8def ttt(value1,*args): for i in args: value1+=i pri...
分类:编程语言   时间:2014-07-05 18:53:17    阅读次数:206
图解MYSQL JOIN ON,SQL JOIN 详解,数据库sql join语句
对于SQL的Join,在学习起来可能是比较乱的。我们知道,SQL的Join语法有很多inner的,有outer的,有left的,有时候,对于Select出来的结果集是什么样子有点不是很清楚。Coding Horror上有一篇文章(实在不清楚为什么Coding Horror也被墙)通过 文氏图Venn...
分类:数据库   时间:2014-07-03 23:25:08    阅读次数:327
LeetCode OJ——练习笔记(1)Evaluate Reverse Polish Notation
院招终于开始了,然后期待与兴奋过后却是面临着笔试一次又一次的失败,然后开始留意到LeetCode。也想自己去体验一下诸多大牛通向无限coding路上都攻克过的一关。话不多说,贴出原题:Evaluate the value of an arithmetic expression inReverse P...
分类:其他好文   时间:2014-07-03 22:01:50    阅读次数:202
python其他
#-*-coding:utf-8-*-#====================#File:python#Author:python#Date:2014#====================__author__='Administrator'#第6章unicode#unicode支持超过9000...
分类:编程语言   时间:2014-07-03 12:23:00    阅读次数:378
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!