读书人

软件工程师还是有经验的好

发布时间: 2012-10-12 10:17:04 作者: rapoo

程序员还是有经验的好

不久前,在互联网上出现了一篇有趣的文章,讲的是对于同一个问题,不同层次的Python程序员编出的Python代码显示出了不同的风格,代码都很简单,有趣。下面让我们一起来看看一个Python程序员是进阶的全过程。

编程新手

  1. def factorial(x): if x == 0:
  2. return 1 else:
  3. return x * factorial(x - 1) print factorial(6)

一年编程经验(学Pascal的)

  1. def factorial(x): result = 1
  2. i = 2 while i <= x:
  3. resultresult = result * i ii = i + 1
  4. return result print factorial(6)

一年编程经验(学C的)

  1. def fact(x): #{ result = i = 1;
  2. while (i <= x): #{ result *= i;
  3. i += 1; #}
  4. return result; #}
  5. print(fact(6))

一年编程经验(读过 SICP)

  1. @tailcall def fact(x, acc=1):
  2. if (x > 1): return (fact((x - 1), (acc * x))) else: return acc
  3. print(fact(6))

一年编程经验(Python)

  1. def Factorial(x): res = 1
  2. for i in xrange(2, x + 1): res *= i
  3. return res print Factorial(6)

懒惰的Python程序员

  1. def fact(x): return x > 1 and x * fact(x - 1) or 1
  2. print fact(6)

更懒的Python程序员

  1. f = lambda x: x and x * f(x - 1) or 1 print f(6)

Python 专家

  1. fact = lambda x: reduce(int.__mul__, xrange(2, x + 1), 1) print fact(6)

Python 黑客

  1. import sys @tailcall
  2. def fact(x, acc=1): if x: return fact(x.__sub__(1), acc.__mul__(x))
  3. return acc sys.stdout.write(str(fact(6)) + '\n')

专家级程序员

  1. from c_math import fact print fact(6)

大英帝国程序员

  1. from c_maths import fact print fact(6)

Web 设计人员

  1. def factorial(x): #-------------------------------------------------
  2. #--- Code snippet from The Math Vault --- #--- Calculate factorial (C) Arthur Smith 1999 ---
  3. #------------------------------------------------- result = str(1)
  4. i = 1 #Thanks Adam while i <= x:
  5. #result = result * i #It's faster to use *= #result = str(result * result + i)
  6. #result = int(result *= i) #?????? result = str(int(result) * i)
  7. #result = int(str(result) * i) i = i + 1
  8. return result print factorial(6)

Unix 程序员

  1. import os def fact(x):
  2. os.system('factorial ' + str(x)) fact(6)

Windows 程序员

  1. NULL = None def CalculateAndPrintFactorialEx(dwNumber,
  2. hOutputDevice, lpLparam,
  3. lpWparam, lpsscSecurity,
  4. *dwReserved): if lpsscSecurity != NULL:
  5. return NULL #Not implemented dwResult = dwCounter = 1
  6. while dwCounter <= dwNumber: dwResult *= dwCounter
  7. dwCounter += 1 hOutputDevice.write(str(dwResult))
  8. hOutputDevice.write('\n') return 1
  9. import sys CalculateAndPrintFactorialEx(6, sys.stdout, NULL, NULL, NULL,
  10. NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)

企业级程序员

  1. def new(cls, *args, **kwargs): return cls(*args, **kwargs)
  2. class Number(object):
  3. pass
  4. class IntegralNumber(int, Number): def toInt(self):
  5. return new (int, self)
  6. class InternalBase(object): def __init__(self, base):
  7. self.base = base.toInt()
  8. def getBase(self): return new (IntegralNumber, self.base)
  9. class MathematicsSystem(object):
  10. def __init__(self, ibase): Abstract
  11. @classmethod
  12. def getInstance(cls, ibase): try:
  13. cls.__instance except AttributeError:
  14. cls.__instance = new (cls, ibase) return cls.__instance
  15. class StandardMathematicsSystem(MathematicsSystem):
  16. def __init__(self, ibase): if ibase.getBase() != new (IntegralNumber, 2):
  17. raise NotImplementedError self.base = ibase.getBase()
  18. def calculateFactorial(self, target):
  19. result = new (IntegralNumber, 1) i = new (IntegralNumber, 2)
  20. while i <= target: result = result * i
  21. i = i + new (IntegralNumber, 1) return result
  22. print StandardMathematicsSystem.getInstance(new (InternalBase,
  23. new (IntegralNumber, 2))).calculateFactorial(new (IntegralNumber, 6))

2楼TNTDoctor3天前 08:36
晕了,我还是初级程序员,后面几个强大的有点变态了,看不懂
1楼BYSF_XF3天前 01:14
我表示后面几个不明白Why

读书人网 >编程

热点推荐