首页 > 代码库 > Python模块调用

Python模块调用

 

 

目录

    • 1 模块
      • import
      • from… import …
      • 1.1 使用模块
      • 1.2 Python模块的导入
      • 1.3 模块的名称空间
      • 1.4 导入模块的做的事情
    • 2 from import
      • 2.1
      • 2.2 from spam import *
    • 3 把模块当做脚本执行
      • 3.1 脚本执行
      • 3.2 模块执行
    • 4 模块搜索路径
    • 5 编译Python文件
    • 6 包
      • 6.1
      • 6.2 小结
      • 6.3 init.py文件
    • 7 绝对导入和相对导入
      • 7.1 绝对导入是从包的最开始的位置开始
      • 7.2 相对导入
    • 8 通过包调用内部的所有的
      • 8 包遵循的原则
    • 9 在任意位置都能调用包

 

1 模块

一个模块是包含了Python定义和声明的文件,文件名,就是模块名字加上py 后缀

把定义的函数、变量保存到文件中,通过Python test.py的方式执行,test.py就是脚本文件。程序功能越来越多,这些监本文件还可以当做模块导入其他的模块中,实现了重利用。

import

使用import的时候,想要使用spam下面的方法,必须使用spam.的方式

import spam

print(spam.money)
spam.read1()
spam.read2()
spam.change()

from… import …

对比import spam,会将源文件的名称空间’spam’带到当前名称空间中,使用时必须是spam.名字的方式

而from 语句相当于import,也会创建新的名称空间,但是将spam中的名字直接导入到当前的名称空间中,在当前名称空间中,直接使用名字就可以了、

1.1 使用模块

#spam.py
print(‘from the spam.py‘)

money=1000

def read1():
    print(‘spam->read1->money‘,1000)

def read2():
    print(‘spam->read2 calling read‘)
    read1()

def change():
    global money   # 经过测试这个在执行这个脚本自身的时候,global是把money的值引过来了,然后再下面进行了修改,之后再打印就是0
    money=0
     print(money)  # 这里是有打印了下 主要 是在模块中的时候进行测试
if __name__ == ‘__main__‘:
# main()
print("测试")  # 初始化执行的

print(money)

change()
print(money)

结果是:
1000
0
0

1.2 Python模块的导入

python模块在导入的时候,防止重复导入,在第一次导入后,会加载到内存,在之后的调用都是指向内存

#test.py
import spam #只在第一次导入时才执行spam.py内代码,此处的显式效果是只打印一次‘from the spam.py‘,当然其他的顶级代码也都被执行了,只不过没有显示效果.
import spam
import spam
import spam

‘‘‘
执行结果:
from the spam.py
‘‘‘

从sys.module中找到当前已经加载的模块

1.3 模块的名称空间

每一个模块都是一个独立的名称空间,定义在这个模块总的函数会把模块的名称空间当做全局名称空间,这样我们在编写自己的模块时,就不用担心我们定义在自己模块中全局变量会在被导入时,与使用者的全局变量冲突

from spam import money, read1, read2,change  # 可以导入多个

print(money)  # 引用的是change 中的money
change()  # 这个是修改了的 只是在
print(money)

‘‘‘
结果是:
1000
0
1000
‘‘‘

1.4 导入模块的做的事情

  1. 为源文件(spam)创建新的名称空间,在spam中定义的函数和方法使用了global时,访问的就是这个名称空间。
  2. 在新创建的名称空间中执行模块中包含的代码
  3. 创建名字spam来引用该命名空间

寻找的优先级:

‘‘‘
先从内存中寻找,sys.modules
然后从内置的寻找(内建)
从自己的路径中寻找 从sys.path中寻找
‘‘‘

2 from import

2.1

python中的变量赋值不是一种存储操作,而只是一种绑定关系

from spam import money, read1, read2, change
money = 100000000  # money现在是绑定到新的上
print(money)  # 现在就有冲突了

read1()
read1 = 1111111
read2()  # 这个不影响,从哪里调用,用哪里的

2.2 from spam import *

from spam import 把spam中所有的不是以下划线(_)开头的名字都导入到当前位置,大部分情况下我们的python程序不应该使用这种导入方式,因为你不知道你导入什么名字,很有可能会覆盖掉你之前已经定义的名字。而且可读性极其的差,在交互式环境中导入时没有问题。

通常使用all=[‘money’,’read1’],这样引用spam的就只能用money和read1两种

3 把模块当做脚本执行

文件有两种应用场景,一种是当做脚本执行,一种是当做模块

3.1 脚本执行

spam文件执行的的时候

print(__name__)
结果是:
‘‘‘
__main__
‘‘‘

3.2 模块执行

在test文件中导入import spam,打印的结果是spam

为了能够控制在不同场景下面的转换,使用了if name == ‘main‘:,当做脚本执行的时候,逻辑写到if name == ‘main‘:下面。

当做模块导入的时候,不会执行if name == ‘main‘:下面的内容。

4 模块搜索路径

总结模块查找的顺序:

内存—>内建—>sys.path
sys.path 的路径是以执行文件为基准的

在不同的路径中的调用,在dir1中调用dir2中的内容

import sys # 先导如sys模块

sys.path.append(r"D:\Python_fullstack_s4\day35\模块\dir1") # 在sys.path的路径中添加dir1的路径    r是在win平台的转义

import spam  # 添加路径后再调用spam 

"""
结果:
from dir1  # 这是spam中打印的内容
"""

5 编译Python文件

pyc文件是在导入模块的时候进行编译的,提高模块的导入速度,只有import/from import才能产生

提前编译

python -m compileall /module_directory 递归着编译

6 包

package是有init.py 文件的包

包的本质就是一个包含init.py文件的目录。

6.1

创建一个包的目录结构,可以把包想象成一个大的模块

glance/                   #Top-level package

├── __init__.py      #Initialize the glance package

├── api                  #Subpackage for api

│   ├── __init__.py

│   ├── policy.py

│   └── versions.py

├── cmd                #Subpackage for cmd

│   ├── __init__.py

│   └── manage.py

└── db                  #Subpackage for db

    ├── __init__.py

    └── models.py

文件的内容:

#文件内容

#policy.py
def get():
    print(‘from policy.py‘)

#versions.py
def create_resource(conf):
    print(‘from version.py: ‘,conf)

#manage.py
def main():
    print(‘from manage.py‘)

#models.py
def register_models(engine):
    print(‘from models.py: ‘,engine)

想要在外部是用glance-api-policy中的文件

import方法

import glance.api.plicy   # 用点的方式

glance.api.plicy.get() # 通过import导入的还是要用名字的方式进行使用
‘‘‘
结果:
from policy.py   # policy中的get的内容
‘‘‘

from import方法

from glance.api.plicy import get  # 下面使用的时候就直接使用了

get()

6.2 小结

导入时都必须遵循一个原则:凡是在导入时带点的,点的左边都必须是一个包,

对于导入后,在使用时就没有这种限制了,点的左边可以是包,模块,函数,类(它们都可以用点的方式调用自己的属性)。

需要注意的是from后import导入的模块,必须是明确的一个不能带点,否则会有语法错误,如:from a import b.c是错误语法

6.3 init.py文件

包都有init.py文件,这个文件是包初始化就会执行的文件,可以为空,也可以是初始化的代码

导入包的时候,仅仅做的就是执行init.py

from  glance.api import plicy   # 导入的是glance  api

‘‘‘
结果:
glance 的包
init 的包
‘‘‘

下面用import *来测试,也是一样的,但是api下面的内容找不到

from glance.api import *   # 这里则是导入包,执行inti,*对应的是__all__中的
‘‘‘
结果:
glance 的包
init 的包
‘‘‘
from glance.api import *

print(x)
print(y)
‘‘‘
结果:
glance 的包
init 的包
1
2
‘‘‘
‘‘‘
这是api中__init__,所以*是对应的__all__中的内容
__all__ = ["x", "y"]
x = 1
y = 2

‘‘‘

7 绝对导入和相对导入

7.1 绝对导入是从包的最开始的位置开始

从test的sys.path的列表中寻找

绝对导入的缺点是包的名字改变的话有问题

在api的init.py下面写

from glance.api import plicy
from glance.api import versions

test的使用

import glance.api  # 仅仅是导入了glance.api  实际是找不到plicy的,因为导入模块仅仅是执行了__init__

print(glance.api.plicy)

‘‘‘
结果:
glance 的包
init 的包
<module ‘glance.api.plicy‘ from ‘D:\\Python_fullstack_s4\\day35\\包\\glance\\api\\plicy.py‘>
‘‘‘

7.2 相对导入

.—当前目录
..—上一级的目录

from . import plicy,versions  #  通过当前目录的方式导入,当前的目录是api

注意这种方式的init自己执行的时候会报错

导入包的执行效果

import glance.api

print(glance.api.plicy.get())
print(glance.api.versions.create_resource(‘aaa‘))
‘‘‘
结果:
from . import plicy,versionsglance 的包
init 的包
from policy.py
None
from version.py:  aaa
None
‘‘‘

8 通过包调用内部的所有的

这是glance的包中的init

from .api.plicy import get   # 都是用的相对导入
from .api.versions import create_resource
from .cmd.manage import main
from .db.modules import register_models

包的定义者容易管理,对于使用者来说,使用的不知道是包还是模块

test文件调用的方式

import glance

glance.get()  # 直接就能够使用
‘‘‘
glance 的包
init 的包
cmd 的包
from policy.py
‘‘‘

8 包遵循的原则

特别需要注意的是:可以用import导入内置或者第三方模块,但是要绝对避免使用import来导入自定义包的子模块,应该使用from… import …的绝对或者相对导入,且包的相对导入只能用from的形式。

包是给别人用的,是不能自己运行的。自己运行的时候会出错

9 在任意位置都能调用包

关键是在运行的的文件查找到的是当前目录的sys.path,如果在别的目录中使用的话就需要找到包的父目录

首先找到文件的绝对路径

import sys
import os

p=os.path.abspath(__file__)  # 打印的是文件的绝对路径
print(p)

‘‘‘
结果:
D:\Python_fullstack_s4\day35\包\test.py
‘‘‘
p = os.path.dirname(os.path.abspath(__file__)) # 返回的是文件的上一级目录
print(p)

‘‘‘
结果:
D:\Python_fullstack_s4\day35\包
‘‘‘

下面的目录结构是

D:.day35
├─包
│  └─glance
│      ├─api
│      │  └─__pycache__
│      ├─cmd
│      │  └─__pycache__
│      ├─db
│      │  └─__pycache__
│      └─__pycache__
├─模块
│  ├─dir1
│  │  └─__pycache__
│  ├─dir2
│  └─__pycache__
└─练习
import sys
import os

base_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# sys.path.append(r"%s"%(base_path)) # 把父目录添加到sys.path中
sys.path.append(r‘%s\包‘ %(base_path))  # 拼接路径,这里拼接的是有glance的包
print(base_path)

import glance
glance.get()
‘‘‘
结果:
D:\Python_fullstack_s4\day35
glance 的包
init 的包
cmd 的包
‘‘‘

 

<style>div.oembedall-githubrepos { border: 1px solid #DDD; list-style-type: none; margin: 0 0 10px; padding: 8px 10px 0; font: 13.34px/1.4 helvetica, arial, freesans, clean, sans-serif; width: 452px; background-color: #fff } div.oembedall-githubrepos .oembedall-body { background: -webkit-gradient(linear,left top,left bottom,from(#FAFAFA),to(#EFEFEF)); border-top: 1px solid #EEE; margin-left: -10px; margin-top: 8px; padding: 5px 10px; width: 100% } div.oembedall-githubrepos h3 { font-size: 14px; margin: 0; padding-left: 18px; white-space: nowrap } div.oembedall-githubrepos p.oembedall-description { color: #444; font-size: 12px; margin: 0 0 3px } div.oembedall-githubrepos p.oembedall-updated-at { color: #888; font-size: 11px; margin: 0 } div.oembedall-githubrepos ul.oembedall-repo-stats { border: none; float: right; font-size: 11px; font-weight: 700; padding-left: 15px; position: relative; z-index: 5; margin: 0 } div.oembedall-githubrepos ul.oembedall-repo-stats li { border: none; color: #666; display: inline-block; list-style-type: none; margin: 0 !important } div.oembedall-githubrepos ul.oembedall-repo-stats li a { background-color: transparent; border: none; color: #666 !important; background-position: 5px -2px; background-repeat: no-repeat; border-left: 1px solid #DDD; display: inline-block; height: 21px; line-height: 21px; padding: 0 5px 0 23px } div.oembedall-githubrepos ul.oembedall-repo-stats li:first-child a { border-left: medium none; margin-right: -3px } div.oembedall-githubrepos ul.oembedall-repo-stats li a:hover { background: 5px -27px no-repeat #4183C4; color: #FFF !important; text-decoration: none } div.oembedall-githubrepos ul.oembedall-repo-stats li:first-child a:hover { } ul.oembedall-repo-stats li:last-child a:hover { } span.oembedall-closehide { background-color: #aaa; cursor: pointer; margin-right: 3px } div.oembedall-container { margin-top: 5px; text-align: left } .oembedall-ljuser { font-weight: 700 } .oembedall-ljuser img { vertical-align: bottom; border: 0; padding-right: 1px } .oembedall-stoqembed { border-bottom: 1px dotted #999; float: left; overflow: hidden; width: 730px; line-height: 1; background: #FFF; color: #000; font-family: Arial, Liberation Sans, DejaVu Sans, sans-serif; font-size: 80%; text-align: left; margin: 0; padding: 0 } .oembedall-stoqembed a { color: #07C; text-decoration: none; margin: 0; padding: 0 } .oembedall-stoqembed a:hover { text-decoration: underline } .oembedall-stoqembed a:visited { color: #4A6B82 } .oembedall-stoqembed h3 { font-family: Trebuchet MS, Liberation Sans, DejaVu Sans, sans-serif; font-size: 130%; font-weight: 700; margin: 0; padding: 0 } .oembedall-stoqembed .oembedall-reputation-score { color: #444; font-size: 120%; font-weight: 700; margin-right: 2px } .oembedall-stoqembed .oembedall-user-info { height: 35px; width: 185px } .oembedall-stoqembed .oembedall-user-info .oembedall-user-gravatar32 { float: left; height: 32px; width: 32px } .oembedall-stoqembed .oembedall-user-info .oembedall-user-details { float: left; margin-left: 5px; overflow: hidden; white-space: nowrap; width: 145px } .oembedall-stoqembed .oembedall-question-hyperlink { font-weight: 700 } .oembedall-stoqembed .oembedall-stats { background: #EEE; margin: 0 0 0 7px; padding: 4px 7px 6px; width: 58px } .oembedall-stoqembed .oembedall-statscontainer { float: left; margin-right: 8px; width: 86px } .oembedall-stoqembed .oembedall-votes { color: #555; padding: 0 0 7px; text-align: center } .oembedall-stoqembed .oembedall-vote-count-post { font-size: 240%; color: #808185; display: block; font-weight: 700 } .oembedall-stoqembed .oembedall-views { color: #999; padding-top: 4px; text-align: center } .oembedall-stoqembed .oembedall-status { margin-top: -3px; padding: 4px 0; text-align: center; background: #75845C; color: #FFF } .oembedall-stoqembed .oembedall-status strong { color: #FFF; display: block; font-size: 140% } .oembedall-stoqembed .oembedall-summary { float: left; width: 635px } .oembedall-stoqembed .oembedall-excerpt { line-height: 1.2; margin: 0; padding: 0 0 5px } .oembedall-stoqembed .oembedall-tags { float: left; line-height: 18px } .oembedall-stoqembed .oembedall-tags a:hover { text-decoration: none } .oembedall-stoqembed .oembedall-post-tag { background-color: #E0EAF1; border-bottom: 1px solid #3E6D8E; border-right: 1px solid #7F9FB6; color: #3E6D8E; font-size: 90%; line-height: 2.4; margin: 2px 2px 2px 0; padding: 3px 4px; text-decoration: none; white-space: nowrap } .oembedall-stoqembed .oembedall-post-tag:hover { background-color: #3E6D8E; border-bottom: 1px solid #37607D; border-right: 1px solid #37607D; color: #E0EAF1 } .oembedall-stoqembed .oembedall-fr { float: right } .oembedall-stoqembed .oembedall-statsarrow { background-image: url("http://cdn.sstatic.net/stackoverflow/img/sprites.png?v=3"); background-repeat: no-repeat; overflow: hidden; background-position: 0 -435px; float: right; height: 13px; margin-top: 12px; width: 7px } .oembedall-facebook1 { border: 1px solid #1A3C6C; padding: 0; font: 13.34px/1.4 verdana; width: 500px } .oembedall-facebook2 { background-color: #627add } .oembedall-facebook2 a { color: #e8e8e8; text-decoration: none } .oembedall-facebookBody { background-color: #fff; vertical-align: top; padding: 5px } .oembedall-facebookBody .contents { display: inline-block; width: 100% } .oembedall-facebookBody div img { float: left; margin-right: 5px } div.oembedall-lanyard { background-attachment: scroll; background-color: transparent; background-image: none; border-width: 0; color: #112644; display: block; float: left; font-family: "Trebuchet MS", Trebuchet, sans-serif; font-size: 16px; height: 253px; line-height: 19px; margin: 0; max-width: none; min-height: 0; outline: #112644 0; padding: 0; position: relative; text-align: left; vertical-align: baseline; width: 804px } div.oembedall-lanyard .tagline { font-size: 1.5em } div.oembedall-lanyard .wrapper { overflow: hidden; clear: both } div.oembedall-lanyard .split { float: left; display: inline } div.oembedall-lanyard .prominent-place .flag:active,div.oembedall-lanyard .prominent-place .flag:focus,div.oembedall-lanyard .prominent-place .flag:hover,div.oembedall-lanyard .prominent-place .flag:link,div.oembedall-lanyard .prominent-place .flag:visited { float: left; display: block; width: 48px; height: 48px; position: relative; top: -5px; margin-right: 10px } div.oembedall-lanyard .place-context { font-size: .889em } div.oembedall-lanyard .prominent-place .sub-place { display: block } div.oembedall-lanyard .prominent-place { font-size: 1.125em; line-height: 1.1em; font-weight: 400 } div.oembedall-lanyard .main-date { color: #8CB4E0; font-weight: 700; line-height: 1.1 } div.oembedall-lanyard .first { width: 48.57%; margin: 0 0 0 2.857% } .mermaid .label { color: #333 } .node circle,.node polygon,.node rect { } .edgePath .path { } .cluster rect { } .cluster text { } .actor { } text.actor { } .actor-line { } .messageLine0 { } .messageLine1 { } #arrowhead { } #crosshead path { } .messageText { } .labelBox { } .labelText,.loopText { } .loopLine { } .note { } .noteText { font-family: "trebuchet ms", verdana, arial; font-size: 14px } .section { opacity: .2 } .section0,.section2 { } .section1,.section3 { opacity: .2 } .sectionTitle0,.sectionTitle1,.sectionTitle2,.sectionTitle3 { } .sectionTitle { font-size: 11px } .grid .tick { opacity: .3 } .grid path { } .today { } .task { } .taskText { font-size: 11px } .taskTextOutsideRight { font-size: 11px } .taskTextOutsideLeft { font-size: 11px } .taskText0,.taskText1,.taskText2,.taskText3 { } .task0,.task1,.task2,.task3 { } .taskTextOutside0,.taskTextOutside1,.taskTextOutside2,.taskTextOutside3 { } .active0,.active1,.active2,.active3 { } .activeText0,.activeText1,.activeText2,.activeText3 { } .done0,.done1,.done2,.done3 { } .doneText0,.doneText1,.doneText2,.doneText3 { } .crit0,.crit1,.crit2,.crit3 { } .activeCrit0,.activeCrit1,.activeCrit2,.activeCrit3 { } .doneCrit0,.doneCrit1,.doneCrit2,.doneCrit3 { cursor: pointer } .activeCritText0,.activeCritText1,.activeCritText2,.activeCritText3,.doneCritText0,.doneCritText1,.doneCritText2,.doneCritText3 { } .titleText { font-size: 18px } text { font-family: "trebuchet ms", verdana, arial; font-size: 14px } html { height: 100% } body { margin: 0 !important; padding: 5px 20px 26px !important; background-color: #fff; font-family: "Lucida Grande", "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", "Lucida Sans Unicode", Helvetica, Arial, sans-serif; font-size: .9em } br,h1,h2,h3,h4,h5,h6 { clear: both } hr.page { background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAECAYAAACtBE5DAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OENDRjNBN0E2NTZBMTFFMEI3QjRBODM4NzJDMjlGNDgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OENDRjNBN0I2NTZBMTFFMEI3QjRBODM4NzJDMjlGNDgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo4Q0NGM0E3ODY1NkExMUUwQjdCNEE4Mzg3MkMyOUY0OCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4Q0NGM0E3OTY1NkExMUUwQjdCNEE4Mzg3MkMyOUY0OCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqqezsUAAAAfSURBVHjaYmRABcYwBiM2QSA4y4hNEKYDQxAEAAIMAHNGAzhkPOlYAAAAAElFTkSuQmCC") repeat-x; border: 0; height: 3px; padding: 0 } hr.underscore { border-top-style: dashed !important } body>:first-child { margin-top: 0 !important } img.plugin { } iframe { border: 0 } figure { } kbd { border: 1px solid #aaa; background-color: #f9f9f9; background-image: linear-gradient(top,#eee,#f9f9f9,#eee); padding: 1px 3px; font-family: inherit; font-size: .85em } .oembeded .oembed_photo { display: inline-block } img[data-echo] { margin: 25px 0; width: 100px; height: 100px; background: url("../img/ajax.gif") center center no-repeat #fff } .spinner { display: inline-block; width: 10px; height: 10px; margin-bottom: -.1em; border: 2px solid rgba(0,0,0,.5); border-top-color: transparent } .spinner::after { content: ""; display: block; width: 0; height: 0; position: absolute; top: -6px; left: 0; border: 4px solid transparent; border-bottom-color: rgba(0,0,0,.5) } p.toc { margin: 0 !important } p.toc ul { padding-left: 10px } p.toc>ul { padding: 10px; margin: 0 10px; display: inline-block; border: 1px solid #ededed } p.toc li,p.toc ul { list-style-type: none } p.toc li { width: 100%; padding: 0; overflow: hidden } p.toc li a::after { content: "." } p.toc li a::before { content: "? " } p.toc h5 { text-transform: uppercase } p.toc .title { float: left; padding-right: 3px } p.toc .number { margin: 0; float: right; padding-left: 3px; background: #fff; display: none } input.task-list-item { margin-left: -1.62em } .markdown { font-family: "Hiragino Sans GB", "Microsoft YaHei", STHeiti, SimSun, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "Segoe UI", AppleSDGothicNeo-Medium, "Malgun Gothic", Verdana, Tahoma, sans-serif; padding: 20px } .markdown a { text-decoration: none; vertical-align: baseline } .markdown a:hover { text-decoration: underline } .markdown h1 { font-size: 2.2em; font-weight: 700; margin: 1.5em 0 1em } .markdown h2 { font-size: 1.8em; font-weight: 700; margin: 1.275em 0 .85em } .markdown h3 { font-size: 1.6em; font-weight: 700; margin: 1.125em 0 .75em } .markdown h4 { font-size: 1.4em; font-weight: 700; margin: .99em 0 .66em } .markdown h5 { font-size: 1.2em; font-weight: 700; margin: .855em 0 .57em } .markdown h6 { font-size: 1em; font-weight: 700; margin: .75em 0 .5em } .markdown h1+p,.markdown h1:first-child,.markdown h2+p,.markdown h2:first-child,.markdown h3+p,.markdown h3:first-child,.markdown h4+p,.markdown h4:first-child,.markdown h5+p,.markdown h5:first-child,.markdown h6+p,.markdown h6:first-child { margin-top: 0 } .markdown hr { border: 1px solid #ccc } .markdown p { margin: 1em 0 } .markdown ol { list-style-type: decimal } .markdown li { display: list-item; line-height: 1.4em } .markdown blockquote { margin: 1em 20px } .markdown blockquote>:first-child { margin-top: 0 } .markdown blockquote>:last-child { margin-bottom: 0 } .markdown blockquote cite::before { content: "—?" } .markdown .code { } .markdown pre { border: 1px solid #ccc; overflow: auto; padding: .5em } .markdown pre code { border: 0; display: block } .markdown pre>code { font-family: Consolas, Inconsolata, Courier, monospace; font-weight: 700; white-space: pre; margin: 0 } .markdown code { border: 1px solid #ccc; padding: 0 5px; margin: 0 2px } .markdown img { max-width: 100% } .markdown mark { color: #000; background-color: #fcf8e3 } .markdown table { padding: 0; border-collapse: collapse; border-spacing: 0; margin-bottom: 16px } .markdown table tr td,.markdown table tr th { border: 1px solid #ccc; margin: 0; padding: 6px 13px } .markdown table tr th { font-weight: 700 } .markdown table tr th>:first-child { margin-top: 0 } .markdown table tr th>:last-child { margin-bottom: 0 } .markdown table tr td>:first-child { margin-top: 0 } .markdown table tr td>:last-child { margin-bottom: 0 } .github { padding: 20px; font-family: "Helvetica Neue", Helvetica, "Hiragino Sans GB", "Microsoft YaHei", STHeiti, SimSun, "Segoe UI", AppleSDGothicNeo-Medium, "Malgun Gothic", Arial, freesans, sans-serif; font-size: 15px; background: #fff; line-height: 1.6 } .github a { color: #3269a0 } .github a:hover { color: #4183c4 } .github h2 { border-bottom: 1px solid #e6e6e6; line-height: 1.6 } .github h6 { color: #777 } .github hr { border: 1px solid #e6e6e6 } .github pre>code { font-size: .9em; font-family: Consolas, Inconsolata, Courier, monospace } .github blockquote>code,.github h1>code,.github h2>code,.github h3>code,.github h4>code,.github h5>code,.github h6>code,.github li>code,.github p>code,.github td>code { background-color: rgba(0,0,0,.07); font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; font-size: 85%; padding: .2em .5em; border: 0 } .github blockquote { border-left: 4px solid #e6e6e6; padding: 0 15px; font-style: italic } .github table { background-color: #fafafa } .github table tr td,.github table tr th { border: 1px solid #e6e6e6 } .github table tr:nth-child(2n) { background-color: #f2f2f2 } .hljs-comment,.hljs-title { color: #9c9491 } .css .hljs-class,.css .hljs-id,.css .hljs-pseudo,.hljs-attribute,.hljs-regexp,.hljs-tag,.hljs-variable,.html .hljs-doctype,.ruby .hljs-constant,.xml .hljs-doctype,.xml .hljs-pi,.xml .hljs-tag .hljs-title { color: #f22c40 } .hljs-built_in,.hljs-constant,.hljs-literal,.hljs-number,.hljs-params,.hljs-pragma,.hljs-preprocessor { color: #df5320 } .css .hljs-rules .hljs-attribute,.hljs-ruby .hljs-class .hljs-title { color: #d5911a } .hljs-header,.hljs-inheritance,.hljs-string,.hljs-value,.ruby .hljs-symbol,.xml .hljs-cdata { color: #5ab738 } .css .hljs-hexcolor { color: #00ad9c } .coffeescript .hljs-title,.hljs-function,.javascript .hljs-title,.perl .hljs-sub,.python .hljs-decorator,.python .hljs-title,.ruby .hljs-function .hljs-title,.ruby .hljs-title .hljs-keyword { color: #407ee7 } .hljs-keyword,.javascript .hljs-function { color: #6666ea } .hljs { display: block; background: #2c2421; color: #a8a19f; padding: .5em } .coffeescript .javascript,.javascript .xml,.tex .hljs-formula,.xml .css,.xml .hljs-cdata,.xml .javascript,.xml .vbscript { opacity: .5 } .MathJax_Hover_Frame { border: 1px solid #A6D !important; display: inline-block; position: absolute } .MathJax_Hover_Arrow { position: absolute; width: 15px; height: 11px; cursor: pointer } #MathJax_About { position: fixed; left: 50%; width: auto; text-align: center; border: 3px outset; padding: 1em 2em; background-color: #DDD; color: #000; cursor: default; font-family: message-box; font-size: 120%; font-style: normal; text-indent: 0; text-transform: none; line-height: normal; letter-spacing: normal; word-spacing: normal; white-space: nowrap; float: none; z-index: 201 } .MathJax_Menu { position: absolute; background-color: #fff; color: #000; width: auto; padding: 2px; border: 1px solid #CCC; margin: 0; cursor: default; font: menu; text-align: left; text-indent: 0; text-transform: none; line-height: normal; letter-spacing: normal; word-spacing: normal; white-space: nowrap; float: none; z-index: 201 } .MathJax_MenuItem { padding: 2px 2em; background: 0 0 } .MathJax_MenuArrow { position: absolute; right: .5em; color: #666 } .MathJax_MenuActive .MathJax_MenuArrow { color: #fff } .MathJax_MenuArrow.RTL { left: .5em; right: auto } .MathJax_MenuCheck { position: absolute; left: .7em } .MathJax_MenuCheck.RTL { right: .7em; left: auto } .MathJax_MenuRadioCheck { position: absolute; left: 1em } .MathJax_MenuRadioCheck.RTL { right: 1em; left: auto } .MathJax_MenuLabel { padding: 2px 2em 4px 1.33em; font-style: italic } .MathJax_MenuRule { border-top: 1px solid #CCC; margin: 4px 1px 0 } .MathJax_MenuDisabled { color: GrayText } .MathJax_MenuActive { background-color: Highlight; color: HighlightText } .MathJax_Menu_Close { position: absolute; width: 31px; height: 31px; top: -15px; left: -15px } #MathJax_Zoom { position: absolute; background-color: #F0F0F0; overflow: auto; display: block; z-index: 301; padding: .5em; border: 1px solid #000; margin: 0; font-weight: 400; font-style: normal; text-align: left; text-indent: 0; text-transform: none; line-height: normal; letter-spacing: normal; word-spacing: normal; white-space: nowrap; float: none } #MathJax_ZoomOverlay { position: absolute; left: 0; top: 0; z-index: 300; display: inline-block; width: 100%; height: 100%; border: 0; padding: 0; margin: 0; background-color: #fff; opacity: 0 } #MathJax_ZoomFrame { position: relative; display: inline-block; height: 0; width: 0 } #MathJax_ZoomEventTrap { position: absolute; left: 0; top: 0; z-index: 302; display: inline-block; border: 0; padding: 0; margin: 0; background-color: #fff; opacity: 0 } .MathJax_Preview { color: #888 } #MathJax_Message { position: fixed; left: 1px; bottom: 2px; background-color: #E6E6E6; border: 1px solid #959595; margin: 0; padding: 2px 8px; z-index: 102; color: #000; font-size: 80%; width: auto; white-space: nowrap } #MathJax_MSIE_Frame { position: absolute; top: 0; left: 0; width: 0; z-index: 101; border: 0; margin: 0; padding: 0 } .MathJax_Error { color: #C00; font-style: italic } footer { position: fixed; font-size: .8em; text-align: right; bottom: 0; margin-left: -25px; height: 20px; width: 100% }</style>

Python模块调用