python蟒蛇绘制(python库函数的调用方法)

python蟒蛇绘制(python库函数的调用方法)

代码实例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import turtle
turtle.setup(650, 350, 200, 200)
turtle.penup()
turtle.fd(-250)
turtle.pendown()
turtle.pensize(25)
turtle.pencolor("purple")
turtle.seth(-40)
for i in range(4):
turtle.circle(40, 80)
turtle.circle(-40, 80)
turtle.circle(40, 80/2)
turtle.fd(40)
turtle.circle(16, 180)
turtle.fd(40 * 2/3)

方法:使用绘制图形的turtle库

使用保留字import应用函数库

被调用的函数都使用了< a >.< b >()形式。通过使用函数库并利用函数进行编程的方法称为“模块编程”

利用import引用函数的两种方式

  • import<库名>

    <库名>.<函数名>(<函数参数>)

  • from <库名> import <函数名,函数名,…,函数名>

    from<库名>import * 其中,*是通配符,代表所有的函数

    在调用此函数时不在需要使用库名

    一般格式为<函数名>(<函数参数>)

以第一种方法

特点:采用< a >.< b >()方式调用库中函数,能够显示标明函数的来源,在引用较多库时代码的可读性更好。

在使用第一种引用方式,python解释器将< a >.< b >整体作为函数名。

以第二种方式

特点:能够直接应用库中函数,可以是代码更加简洁

在采用该种方式引用函数时,python解释器会将< b >作为函数名

Donate
  • Copyright: Copyright is owned by the author. For commercial reprints, please contact the author for authorization. For non-commercial reprints, please indicate the source.

扫一扫,分享到微信

微信分享二维码
  • Copyrights © 2015-2023 dwx
  • Visitors: | Views:

请我喝杯咖啡吧~

支付宝
微信