结语

Python 中的软件工程原理

Adam Spannbauer

Machine Learning Engineer at Eastman

回顾

  • 模块化

软件包

def function()
    ...
class Class:
    ...

DRY 雨伞

Python 中的软件工程原理

回顾

  • 模块化
  • 文档
"""docstrings"""
# Comments

Sphinx 标志

Python 中的软件工程原理

回顾

  • 模块化
  • 文档
  • 自动化测试

pytest 标志

def f(x):
    """
    >>> f(x)
    expected output
    """
    ...

Travis CI 标志

Python 中的软件工程原理

数据科学与软件工程

数据科学维恩图

Python 中的软件工程原理

祝你成功!

Python 中的软件工程原理

Preparing Video For Download...