- 浏览: 247375 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (127)
- vim (3)
- python (44)
- pymysql (1)
- mysql (9)
- macvim (1)
- erlang (3)
- twisted (0)
- tornado (5)
- django (7)
- postgresql (5)
- sql (1)
- java (7)
- tech (4)
- cache (1)
- lifestyle (3)
- html (1)
- ubuntu (2)
- rabbitmq (1)
- algorithm (8)
- Linux (4)
- Pythonista (1)
- thread (1)
- sort (6)
- 设计模式 (1)
- search (1)
- Unix (6)
- Socket (3)
- C (2)
- web (1)
- gc (1)
- php (10)
- macos (1)
最新评论
-
2057:
这个程序有bug。
查找算法学习之二分查找(Python版本)——BinarySearch -
dotjar:
NB
一个Python程序员的进化[转]
不久前,在互联网上出现了一篇有趣的文章,讲的是对于同一个问题,不同层次的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))
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))
发表评论
-
macos 10.9.2 clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command
2014-03-25 19:13 1761方法总是有的,当然需要你去寻找。 当然如果花费太多的时间在一件 ... -
PostgreSQL psycopg2:IndexError: tuple index out of range
2014-01-09 17:04 2231Postgresql psycopg2使用like查询的时候 ... -
Python 迭代器和生成器
2013-10-15 23:09 2851迭代器 迭代器只不过是一个实现迭代器协议的容器对象。它基于两个 ... -
Python时间模块
2013-10-15 23:03 3474time模块 时间模块中最常用的一个函数就是获取当前时间的函数 ... -
Python装饰器
2013-10-15 22:59 1571编写自定义装饰器有许多方法,但最简单和最容易理解的方法是编写一 ... -
python list
2013-10-15 22:56 1255简单总结以及整理如下: >>> dir( ... -
Python Excel
2013-09-10 17:21 977安装lib easy_install xlrd def ... -
排序算法学习(python版本)之堆排序(HeapSort)
2013-07-01 22:54 2000Contains: 堆排序以及堆排序的应用 堆排序(Heaps ... -
python range xrange
2013-06-25 23:30 1151引用Help on built-in function ran ... -
python class
2013-06-25 00:54 1829引用类是创建新对象类 ... -
AttributeError: 'module' object has no attribute 'SendCloud'
2013-06-05 11:46 7085网上查了下 意思是说你命名的文件名不能和lib重名,这样会导 ... -
python string
2013-05-07 23:44 2199如果这就是字符串,这本来就是字符串 首先看下字符串的方法 ... -
Python property
2013-03-29 19:56 0由于之前有总结过,可以参考http://2057.iteye. ... -
python tips
2013-03-28 23:57 8851、enum #!/usr/bin/env python ... -
python decorators
2013-03-28 23:36 1366Contains: 1、decorators 2、funct ... -
python closures
2013-03-28 22:09 1192Closure:如果在一个内部函数里,对在外部作用域(但不是在 ... -
Python map、filter,reduce介绍
2013-03-28 22:02 13131、filter(function,iterable) 引用C ... -
Python __new__ 、__init__、 __call__
2013-03-26 23:49 5353Contains: __new__: 创建对象时调用,返回当 ... -
Python socket简介
2013-03-25 23:42 2174自豪地使用dir和help. Python 2.7.2 ( ... -
Tornado ioloop源码简析
2013-03-21 00:18 2852#!/usr/bin/env python #-*-en ...
相关推荐
最近在玩Python,在粗略的看了一下Learning Python和Core Python之后,偶然发现网上有个帖子Python程序员的进化写的很有意思。于是打算仿照一篇,那篇帖子用了十余种方法完成一个阶乘函数,我在这里会用九种不同的...
自从 2008 年以来,Python 3 横空出世并慢慢进化。Python 3 的流行一直被认为需要很长一段时间。 事实上,到我写这本书的 2013 年,绝大部分的 Python 程序员仍然在生产环境中使用的是版本 2 系列, 最主要是因为 ...
在本项目中,我们探索的是一个使用Python编程语言和Pygame库实现的贪吃蛇游戏。这个项目不仅提供了一个基础的贪吃蛇游戏版本...对于想要进入游戏开发领域或对AI感兴趣的Python程序员来说,这是一个极具价值的实践案例。
成为一名C++程序员是一个逐步深入的过程,需要掌握编程基础、提高编程技巧,以及不断提升设计思想。以下是一份详细的指南: 1. **入门阶段**: - 初步理解编程思维,通过编写小程序解决简单问题。选择合适的入门...
11. 社区支持:Python有一个庞大而活跃的社区,提供了大量的文档、教程和代码库,对学习和使用Python特别有帮助。 12. 应用范围:Python广泛应用于系统管理任务、Web开发、数据分析、人工智能、科学计算等领域,其...
对于从事生物信息学研究或相关应用开发的Python程序员来说,这个库可能会提供有价值的工具和函数。不过,要充分利用这个库,需要了解其具体的API和功能,这通常需要查阅官方文档或者从源代码中学习。
作为一个程序员,真正的成长不仅仅是掌握更多的编程语言或框架,而是涵盖了技术、思维、沟通、学习能力等多方面的提升。本文将围绕这些关键点展开,探讨程序员如何实现自我进化,成为更优秀的开发者。 首先,扎实的...
Python语言是一种高级、解释型的编程语言,它具有简洁、易学、强大等特点,广泛应用于数据科学、人工智能、网络爬虫、自动化操作等领域。本课程设计大纲旨在引导学生入门Python语言,掌握Python的基本语法、标准类型...
同时,它还支持命令行界面,方便非Python程序员使用。 6. **安装与依赖**:Phylofisher的安装非常简便,只需通过Python的pip工具即可完成。它依赖于其他生物信息学工具,如HMMER和MAFFT,这些依赖项会在安装过程中...
Python 3.0是Python语言的一个重大更新,引入了许多与2.x版本不兼容的变化,旨在提高语言的清晰度和现代性。 这个"python-3.0a3.msi"安装包是专为Windows操作系统设计的,采用Microsoft Installer(MSI)格式,便于...
Python 3.9.1是Python编程语言的一个主要版本更新,包含了众多的新特性和改进。在阅读这份Python 3.9.1的中文官方文档时,我们可以了解到从3.9版本开始引入的一些关键变化。 首先,文档中提到的Python 3.9.1的新...
在标题"python-3.8.0-amd64.rar"中,我们看到的是Python 3.8.0的一个AMD64架构的版本,这意味着它是为64位操作系统编译的,比如Windows、Linux或macOS。RAR是一种常见的文件压缩格式,通常用于存储多个文件在一个...
Python 3.8.2是Python编程语言的一个重要版本,专为CentOS 7操作系统设计。这个版本在Python的进化历程中引入了诸多改进和新特性,使得它更加强大且适应现代开发需求。以下是对Python 3.8.2及其在CentOS 7上安装与...
这个有趣的名字现在已经成为一个标志,而Python的标识则是一条缠绕的蓝白双蛇,象征着其灵活、强大且不断进化的特性。 总的来说,Python是一种多用途、高效、易学且社区活跃的语言,它在软件开发、科学研究、数据...
作为迭代、生成、分析和设计进化的一个工具,编程的作用是无限的。此外,编程还提供了一种新的语言来与世界沟通,因为几乎每个学科,从科学、工程到艺术,都在使用代码作为新的、先进的沟通媒介。这本教程应该能够...
然而,随着时间的推移,作者鼓励所有Python程序员拥抱Python 3,因为它是Python语言的未来。 在版权信息方面,本书版权归属于作者David Beazley和Brian K. Jones,译者熊能获得了翻译该书的权利,并将它奉献给了...
在这个"Python基于遗传算法实现智能排课系统源码.zip"压缩包中,包含的是一个利用Python开发的智能排课系统,该系统应用了遗传算法来解决复杂的课程安排问题。遗传算法是一种模拟自然选择和遗传机制的优化方法,常...
Python的另一个重要特点是它的模块化设计,这解决了ABC语言的可扩展性问题。Python的模块系统允许开发者将代码组织成可重用的部分,方便添加新功能。同时,Python提供了丰富的标准库,涵盖了从网络通信到文件处理的...