Python import 关键字



Python 的 import 关键字用于导入模块。可以使用 import 导入文件/函数,以便从另一个模块访问这些模块。

用法

以下是 Python import 关键字的用法:

import <module_name>

其中,module_name 是我们需要导入的模块的名称。

示例

以下是 Python import 关键字的基本用法:

import array
myArray = array.array('i',[1, 2, 3, 4, 5])
print(myArray)

输出

以下是上述代码的输出:

array('i', [1, 2, 3, 4, 5])

使用 'import' 关键字与 'from'

我们可以将 import 关键字与 from 一起使用来导入模块。

示例

以下是 importfrom 一起使用的示例:

from math import sqrt, pow
# Using the imported functions
print("Square root of 99 is:", sqrt(99))  
print("7 to the power of 3 is:", pow(7, 3))

输出

以下是上述代码的输出:

Square root of 99 is: 9.9498743710662
7 to the power of 3 is: 343.0

使用 'import' 与星号 (*)

import 关键字不仅可以导入特定函数,还可以使用 星号[*] 导入模块的所有函数。要导入模块的所有函数,请使用 import 关键字后跟模块名称和 星号

示例

这里,我们使用 import星号 导入了 math 模块的所有函数:

from math import *
print("The exponential value of e power 0:", exp(0))
print("The gcd of 3 and 6 :",gcd(3,6))

输出

以下是上述代码的输出:

The exponential value of e power 0: 1.0
The gcd of 3 and 6 : 3

使用 'import' 关键字与 'as'

我们还可以将 as 关键字与 import 一起使用,为特定函数指定一个选定的名称。

示例

以下是 import 关键字与 as 关键字一起使用的示例:

from array import array as arr
myArray = arr('i',[10, 20, 30, 40, 50]) 
print(myArray)

输出

以下是上述代码的输出:

array('i', [10, 20, 30, 40, 50])
python_keywords.htm
广告