欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python学习笔记(函数库的引用)

程序员文章站 2022-07-09 22:55:35
...

Python对库函数引用的方式
第一种方式在程序头部增加:

import<库名>

例如:import math

>>>import math
>>>math.sqrt(a)

第二种引用方式:

from <库名> import <函数名>
from <库名> import *

例如:

>>>from math import *
>>>sqrt(a)