设为首页 收藏本站
查看: 596|回复: 0

[经验分享] 一个Python程序员的进化

[复制链接]

尚未签到

发表于 2017-4-30 09:49:28 | 显示全部楼层 |阅读模式
不久前,在互联网上出现了一篇有趣的文章,讲的是对于同一个问题,不同层次的Python程序员编出的Python代码显示出了不同的风格,代码都很简单,有趣。下面让我们一起来看看一个Python程序员是进阶的全过程。
AD:






 
不久前,在互联网上出现了一篇有趣的文章,讲的是对于同一个问题,不同层次的Python程序员编出的Python代码显示出了不同的风格,代码都很简单,有趣。
编程新手


  • def factorial(x):  

  •     if x == 0:  
  •         return 1  
  •     else:  
  •         return x * factorial(x - 1)  
  • print factorial(6) 

一年编程经验(学Pascal的)


  • def factorial(x):  

  •     result = 1 

  •     i = 2 

  •     while i <= x:  

  •         resultresult = result * i  

  •         ii = i + 1  
  •     return result  
  • print factorial(6) 

一年编程经验(学C的)


  • def fact(x): #{  

  •     result = i = 1;  

  •     while (i <= x): #{  
  •         result *= i;  
  •         i += 1;  
  •     #}  
  •     return result;  
  • #}  
  • print(fact(6)) 

一年编程经验(读过 SICP)


  • @tailcall  

  • def fact(x, acc=1):  

  •     if (x > 1): return (fact((x - 1), (acc * x)))  
  •     else:       return acc  
  • print(fact(6)) 

一年编程经验(Python)


  • def Factorial(x):  

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

懒惰的Python程序员


  • def fact(x):  

  •     return x > 1 and x * fact(x - 1) or 1  
  • print fact(6) 

更懒的Python程序员


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

Python 专家


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

  • print fact(6

Python 黑客


  • import sys  
  • @tailcall 

  • def fact(x, acc=1):  

  •     if x: return fact(x.__sub__(1), acc.__mul__(x))  

  •     return acc  

  • sys.stdout.write(str(fact(6)) + '\n'

专家级程序员


  • from c_math import fact  

  • print fact(6

大英帝国程序员


  • from c_maths import fact  

  • print fact(6

Web 设计人员


  • def factorial(x):  

  •     #-------------------------------------------------  

  •     #--- Code snippet from The Math Vault          ---  

  •     #--- Calculate factorial (C) Arthur Smith 1999 ---  

  •     #-------------------------------------------------  

  •     result = str(1)  

  •     i = 1 #Thanks Adam  

  •     while i <= x:  

  •         #result = result * i  #It's faster to use *=  

  •         #result = str(result * result + i)  

  •            #result = int(result *= i) #??????  
  •         result = str(int(result) * i)  

  •         #result = int(str(result) * i)  

  •         i = i + 1 

  •     return result  

  • print factorial(6

Unix 程序员


  • import os  

  • def fact(x):  

  •     os.system('factorial ' + str(x))  

  • fact(6

Windows 程序员


  • NULL = None 

  • def CalculateAndPrintFactorialEx(dwNumber,  
  •                                  hOutputDevice,  
  •                                  lpLparam,  
  •                                  lpWparam,  
  •                                  lpsscSecurity,  
  •                                  *dwReserved):  

  •     if lpsscSecurity != NULL:  

  •         return NULL #Not implemented  

  •     dwResult = dwCounter = 1 

  •     while dwCounter <= dwNumber:  
  •         dwResult *= dwCounter  

  •         dwCounter += 1 
  •     hOutputDevice.write(str(dwResult))  

  •     hOutputDevice.write('\n')  

  •     return 1 

  • import sys  

  • CalculateAndPrintFactorialEx(6, sys.stdout, NULL, NULL, NULL,  
  •  NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL) 

企业级程序员



  • def new(cls, *args, **kwargs):  

  •     return cls(*args, **kwargs)  
  •    

  • class Number(object):  

  •     pass 
  •    

  • class IntegralNumber(int, Number):  

  •     def toInt(self):  

  •         return new (int, self)  
  •    

  • class InternalBase(object):  

  •     def __init__(self, base):  

  •         self.base = base.toInt()  
  •    

  •     def getBase(self):  

  •         return new (IntegralNumber, self.base)  
  •    

  • class MathematicsSystem(object):  

  •     def __init__(self, ibase):  

  •         Abstract  
  •    
  •     @classmethod 

  •     def getInstance(cls, ibase):  

  •         try:  

  •             cls.__instance  

  •         except AttributeError:  

  •             cls.__instance = new (cls, ibase)  

  •         return cls.__instance  
  •    

  • class StandardMathematicsSystem(MathematicsSystem):  

  •     def __init__(self, ibase):  

  •         if ibase.getBase() != new (IntegralNumber, 2):  

  •             raise NotImplementedError  

  •         self.base = ibase.getBase()  
  •    

  •     def calculateFactorial(self, target):  

  •         result = new (IntegralNumber, 1)  

  •         i = new (IntegralNumber, 2)  

  •         while i <= target:  
  •             result = result * i  

  •             i = i + new (IntegralNumber, 1)  

  •         return result  
  •    

  • print StandardMathematicsSystem.getInstance(new (InternalBase,  

  • new (IntegralNumber, 2))).calculateFactorial(new (IntegralNumber, 6)) 










自己还是初学者
一年编程经验(读过 SICP)  用的是尾递归



Python 专家


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

  • print fact(6




用的是reduce.






学习到:

xrange([size=1.3em][start[size=1.3em]], stop[size=1.3em][, step[size=1.3em]])

  This function is very similar to range(), but returns an “xrange object” instead of a list. This is an opaque sequence type which yields the same values as the corresponding list, without actually storing them all simultaneously. The advantage of xrange() over range() is minimal (since xrange() still has to create the values when asked for them) except when a very large range is used on a memory-starved machine or when all of the range’s elements are never used (such as when the loop is usually terminated with break).
  赞

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-371080-1-1.html 上篇帖子: Extending and Embedding the Python Interpreter(四) 下篇帖子: UltraEdit 配置 python 环境(语法高亮)
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表