python对函数库引用的第一种方式

格式是: import<库名>

例如:

import turtle

如果需要用到函数库中函数,需要使用: <库名>.<函数名>

例如:

import turtle
    turtle.fd(100)

相关推荐:《Python基础教程》

python对函数库引用的第二种方式

格式是: from<库名>import<函数名> 

from<库名>import *

调用函数不需要<库名>,直接使用<函数名>

例如:

from turtle import * 
    fd(100)

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python如何调用函数库