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)