python高级特性
Posted lgx-fighting
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python高级特性相关的知识,希望对你有一定的参考价值。
迭代器:
闭包:
生成器:
递归:
import turtle
#科赫曲线
def koch(t,x):
if x<10:
t.fd(x)
return
koch(t,x/3)
t.lt(60)
koch(t,x/3)
t.rt(120)
koch(t,x/3)
t.lt(60)
koch(t,x/3)
if __name__==‘__main__‘:
bob = turtle.Turtle()
koch(bob,300)
turtle.mainloop()
解释器:
开发环境-->编译器-->解释器-->
以上是关于python高级特性的主要内容,如果未能解决你的问题,请参考以下文章