作为一个python程序员,我可不认为Python是一门非常简单的语言——起码其中藏有的太多黑箱。我认为Python是一门杂糅这非常多的设计理念的一门语言。比如函数式编程(lambda), 元编程(metaclass)。有的时候,我们需要去理清我们说学过的看似简单实际上内容繁多的python知识。
就比如说,python的迭代次数是一千次:
count = 0
def recursionCount():
count += 1
recursionCount()
try:
recursionCount()
except:
print("this limitation of the recursion is: {0}".format(count))
最终打印出来的结果是this limitation of the recursion is: 1000
本文主要是给作者用于巩固语言知识。与其他人无关