直接看命令行下的交互式执行:
Microsoft Windows [版本 10.0.18363.1198]
(c) 2019 Microsoft Corporation。保留所有权利。
C:\Users\chenxuqi>python
Python 3.7.4 (tags/v3.7.4:e09359112e, Jul 8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> numpy
<module 'numpy' from 'D:\\Python\\Python37\\lib\\site-packages\\numpy\\__init__.py'>
>>> ^Z
C:\Users\chenxuqi>python
Python 3.7.4 (tags/v3.7.4:e09359112e, Jul 8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy as np
>>> np
<module 'numpy' from 'D:\\Python\\Python37\\lib\\site-packages\\numpy\\__init__.py'>
>>> numpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'numpy' is not defined
>>>
>>> import numpy
>>> numpy
<module 'numpy' from 'D:\\Python\\Python37\\lib\\site-packages\\numpy\\__init__.py'>
>>> np
<module 'numpy' from 'D:\\Python\\Python37\\lib\\site-packages\\numpy\\__init__.py'>
>>>
>>>