摘要:
笔者感觉面试最主要的两点:1.项目经验。 2.项目经验和招聘职位相符,这是最主要的,其他的都是锦上添花。 自我介绍 这是一道送分题,万年不变的第一个问题。不过有些小伙伴可能没有太在意,其实这个问题已经在面试官心中决定了你的去留意向。自我介绍的主要结构:个人基本信息 + 基本技术构成 + 项目经验(具 阅读全文
摘要:
Python语言特性 1 Python的函数参数传递 看两个例子: Python 1 2 3 4 5 a = 1 def fun(a): a = 2 fun(a) print a # 1 Python Python 1 2 3 4 5 a = 1 def fun(a): a = 2 fun(a) p 阅读全文
摘要:
inset into tb(k2,k1,name,age) values(%(k2)s,%(k1)s,%(name)s,%(age)s), 字典 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
1 #!/usr/bin/env python 2 class Mapper: 3 __mapper_relation = {}#__私有化,其他类不能访问 4 5 @staticmethod 6 def register(cls,value): 7 Mapper.__mapper_relation[cls] = value 8 9 ... 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
1 #!/usr/bin/env python 2 #抽象方法抽象类 3 import abc 4 class Foo(metaclass=abc.ABCMeta): 5 def f1(self): 6 raise Exception(".....") 7 def f2(self): 8 pass 9 @abc.abstr... 阅读全文