阿毛的blog 记录眼中的事事物物
14 二
本文是从 The Evolution of a Python Programmer 这篇文章翻译而来。
1 2 3 4 5 6 |
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
print factorial(6)
|
1 2 3 4 5 6 7 8 |
def factorial(x):
result = 1
i = 2
while i <= x:
result = result * i
i = i + 1
return result
print factorial(6)
|
1 2 3 4 5 6 7 8 9 |
def fact(x): #{
result = i = 1;
while (i <= x): #{
result *= i;
i += 1;
#}
return result;
#}
print(fact(6))
|
1 2 3 4 5 |
@tailcall
def fact(x, acc=1):
if (x > 1): return (fact((x - 1), (acc * x)))
else: return acc
print(fact(6))
|
1 2 3 4 5 6 |
def Factorial(x):
res = 1
for i in xrange(2, x + 1):
res *= i
return res
print Factorial(6)
|
1 2 3 |
def fact(x):
return x > 1 and x * fact(x - 1) or 1
print fact(6)
|
1 2 |
f = lambda x: x and x * f(x - 1) or 1 print f(6) |
1 2 |
fact = lambda x: reduce(int.__mul__, xrange(2, x + 1), 1) print fact(6) |
1 2 3 4 5 6 |
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')
|
1 2 |
from c_math import fact print fact(6) |
1 2 |
from c_maths import fact print fact(6) |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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)
|
1 2 3 4 |
import os
def fact(x):
os.system('factorial ' + str(x))
fact(6)
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
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)
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
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))
|
13 八
5 五

5月5日,5我喜欢的一个数字,5.1劳动节放假从新搞了个界面,从新在注了域名(amao.info),在美国续费买了主机,今天把新页面放出来。为了充门面,把以前有点总结性的数据导进来。
不记得这是第三次第四次还是第五次给自己做叶子了,便于自己记忆这次就叫”阿毛BLOG 3.0″。
这次的主题为SEO(搜索引擎优化)以及相关的网络技术和阿毛本人关注喜欢的一些东东西西的事或物或人或景.
20 九
这两天事情挺多。
那边公司的网站基本已经上线,做的最多的工作是对网站进一步修改优化,以及相关的宣传与推广工
作…
最近还在学着,先关的网络开发技术,发现着玩意越弄东西越多更新越来越快。为了兴趣,为了吃饭,
继续…
朋友们说好久没出去游荡了,觉得最近出去野野。
4 八
Man is not made for defeat … man can be destroyed but not defeated.
人能够被打倒,但是不能够被打败。—海明威
这是今天的心情签名
一直喜欢的一句话
有些事情是莫名其妙的
有些事情是匪夷所思的
有些事情是刻骨铭心的
有些事情是需要努力的
有些事情是需要笑看的
…
有些事情让它请让他
飘过~~
Man is not made for defeat … man can be destroyed but not defeated.
13 六
6.13农历5.7
这段时间发生了很多事
先是正式的离开了学校
走过那些学生时代,小学,中学,大学
正式的步入了“社会”
离开了一些人
离开了一些事
离开了一些….
这是某一阶段的某一个结束!
同样也是某一阶段的某一个开始!