自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

有意思的文章:程序員的進(jìn)化

開發(fā) 前端
不久前,在互聯(lián)網(wǎng)上出現(xiàn)了一篇有趣的文章,講的是對于同一個問題,不同層次的程序員編出的Python代碼顯示出了不同的風(fēng)格,代碼都很簡單,有趣。

不久前,在互聯(lián)網(wǎng)上出現(xiàn)了一篇有趣的文章,講的是對于同一個問題,不同層次的程序員編出的Python代碼顯示出了不同的風(fēng)格,代碼都很簡單,有趣。我把它整理了一下,并修改了幾處錯誤。

編程新手

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

一年編程經(jīng)驗(yàn)(學(xué)Pascal的)

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

一年編程經(jīng)驗(yàn)(學(xué)C的)

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

一年編程經(jīng)驗(yàn)(讀過 SICP)

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

一年編程經(jīng)驗(yàn)(Python)

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

懶惰的Python程序員

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

更懶的Python程序員

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

Python 專家

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

Python 黑客

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

專家級程序員

  1. rom c_math import fact   
  2. print fact(6)  

大英帝國程序員

  1. from c_maths import fact   
  2. print fact(6)  

Web 設(shè)計人員

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

Unix 程序員

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

Windows 程序員

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

企業(yè)級程序員

  1. def new(cls, *args, **kwargs):   
  2.     return cls(*args, **kwargs)   
  3.      
  4. class Number(object):   
  5.     pass  
  6.      
  7. class IntegralNumber(int, Number):   
  8.     def toInt(self):   
  9.         return new (int, self)   
  10.      
  11. class InternalBase(object):   
  12.     def __init__(self, base):   
  13.         self.base = base.toInt()   
  14.      
  15.     def getBase(self):   
  16.         return new (IntegralNumber, self.base)   
  17.      
  18. class MathematicsSystem(object):   
  19.     def __init__(self, ibase):   
  20.         Abstract   
  21.      
  22.     @classmethod 
  23.     def getInstance(cls, ibase):   
  24.         try:   
  25.             cls.__instance   
  26.         except AttributeError:   
  27.             cls.__instance = new (cls, ibase)   
  28.         return cls.__instance   
  29.      
  30. class StandardMathematicsSystem(MathematicsSystem):   
  31.     def __init__(self, ibase):   
  32.         if ibase.getBase() != new (IntegralNumber, 2):   
  33.             raise NotImplementedError   
  34.         self.base = ibase.getBase()   
  35.      
  36.     def calculateFactorial(self, target):   
  37.         result = new (IntegralNumber, 1)   
  38.         i = new (IntegralNumber, 2)   
  39.         while i <= target:   
  40.             result = result * i   
  41.             i = i + new (IntegralNumber, 1)   
  42.         return result   
  43.      
  44. print StandardMathematicsSystem.getInstance(new (InternalBase,   
  45. new (IntegralNumber, 2))).calculateFactorial(new (IntegralNumber, 6)) 

原文鏈接:The Evolution of a Python Programmer

【編輯推薦】

  1. jQ、Yahoo API和HTML 5開發(fā)天氣預(yù)報應(yīng)用
  2. 如何優(yōu)化你的JS代碼
  3. 為什么開發(fā)人員工作10多年了還會迷茫?
  4. 我為什么要學(xué)習(xí)Python
  5. HTML 5開發(fā)實(shí)戰(zhàn)案例之網(wǎng)易微博
責(zé)任編輯:張偉 來源: Web開發(fā)者
相關(guān)推薦

2013-11-29 13:05:07

程序員工作

2020-01-20 14:28:05

程序員技能開發(fā)者

2021-03-25 06:12:55

SVG 濾鏡CSS

2022-06-15 07:21:47

鼠標(biāo)指針交互效果CSS

2022-08-15 22:34:47

Overflow方向裁切

2020-12-12 13:50:16

云開發(fā)

2017-08-01 00:52:07

kafka大數(shù)據(jù)消息總線

2021-01-27 13:54:05

開發(fā)云原生工具

2018-06-24 16:39:28

Tomcat異常線程

2013-08-28 09:46:09

Debian LinuLinux發(fā)行版

2022-07-11 13:09:26

mmapLinux

2010-04-09 11:24:59

Oracle 排序

2021-11-17 10:45:58

Chrome 95新特性前端

2015-10-28 13:57:29

融合架構(gòu)華三UIS

2012-05-22 10:12:59

jQuery

2021-02-20 16:01:26

Github前端開發(fā)

2022-08-23 08:01:09

CSS前端

2023-05-15 09:16:18

CSSCSS Mask

2012-04-12 15:14:31

idf2012英特爾

2011-02-14 13:05:17

PythonWeb
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號