Python 库的引用方式Python 库的引用方式
Python 库的引用方式库引用 是python程序功能的一种方式方法一:Import<库名><库名>.<函数名>()import turtleturtle.setup(650,350,200,200)turtle.penup()turtle.pendown()turtle.fd(-250)方法二:from<库名>import*<函数名>from turtl