只有注册用户登录后才能阅读该文。 阅读全文
摘要:
问题一:以下的代码的输出将是什么? 说出你的答案并解释。 class Parent(object): x = 1 class Child1(Parent): pass class Child2(Parent): pass print Parent.x, Child1.x, Child2.x Chil 阅读全文
摘要:
Python语言特性 1 Python的函数参数传递 看两个例子: 1 2 3 4 5 a = 1 def fun(a): a = 2 fun(a) print a # 1 1 2 3 4 5 a = 1 def fun(a): a = 2 fun(a) print a # 1 1 2 3 4 5 阅读全文
摘要:
自我介绍 这是一道送分题,万年不变的第一个问题。不过有些小伙伴可能没有太在意,其实这个问题已经在面试官心中决定了你的去留意向。自我介绍的主要结构:个人基本信息 + 基本技术构成 + 项目经验(具体项目以及在项目中的负责部分)+ 自我评价,其中的原则就是紧紧围绕招聘岗位的需求做介绍。在此之前要做好准备 阅读全文
摘要:
问题一:以下的代码的输出将是什么? 说出你的答案并解释。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 class Parent(object): x = 1 class Child1(Parent): pass class Child2(Parent): pass print 阅读全文