mirror of
https://github.com/apachecn/ailearning.git
synced 2026-02-13 23:35:28 +08:00
27 lines
370 B
Python
27 lines
370 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
|
|
"""
|
|
@version:
|
|
@author: yangjf
|
|
@license: ApacheCN
|
|
@contact: highfei2011@126.com
|
|
@site: https://github.com/apachecn/MachineLearning
|
|
@software: PyCharm
|
|
@file: __init__.py.py
|
|
@time: 2017/3/4 21:27
|
|
@test result:pass
|
|
"""
|
|
|
|
def func():
|
|
pass
|
|
|
|
|
|
class Main():
|
|
def __init__(self):
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
pass |