概述
Python 库的引用方式
库引用 是python程序功能的一种方式
方法一:Import<库名>
<库名>.<函数名>()
import turtle
turtle.setup(650,350,200,200)
turtle.penup()
turtle.pendown()
turtle.fd(-250)
方法二:from<库名>import*
<函数名>
from turtle import*
setup(650,350,200,200)
penup()
pendown()
fd(-250)
方法三:from<库名>import<函数名,函数名,函数名……>
<函数名>
from turtle import <set,penup,pendwomn,fd>
setup(650,350,200,200)
penup()
pendwon()
fd(-250)
方法四:Import<库名>as<库别名>
<库名>.<函数名>()
import turtle as t
t.setup(650,350,200,200)
t.penup()
t.pendown()
t.fd(-250)
最后
以上就是内向中心为你收集整理的Python 库的引用方式Python 库的引用方式的全部内容,希望文章能够帮你解决Python 库的引用方式Python 库的引用方式所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复