|
1 | 1 | # python-tutorial |
| 2 | + |
| 3 | +[](https://badge.fury.io/py/python-tutorial) |
| 4 | +[](CONTRIBUTING.md) |
| 5 | +[](https://github.com/shibing624/python-tutorial/graphs/contributors) |
| 6 | +[](LICENSE) |
| 7 | +[](requirements.txt) |
| 8 | +[](https://github.com/shibing624/python-tutorial/issues) |
| 9 | +[](#Contact) |
| 10 | + |
| 11 | + |
2 | 12 | python教程,包括:python基础、numpy、scipy、python进阶、matplotlib、OOP、tensorflow、keras、pandas、NLP analysis. |
3 | 13 |
|
4 | 14 |
|
5 | 15 |
|
6 | | -在本Python教程包含了一些范例,涵盖了大多数常见Python日常脚本任务,是入门Python的学习资料,也可以作为工作中上手Python的参考实现。 |
| 16 | +在本Python教程包含了一些范例,涵盖了大多数常见Python日常脚本任务,是入门Python的学习资料,也可以作为工作中编写Python脚本的参考实现。 |
| 17 | +以下所有实现均在python3环境下测试。 |
| 18 | + |
7 | 19 |
|
| 20 | +**Guide** |
8 | 21 |
|
9 | | -## nlp-tutorial的例子清单 |
| 22 | +- [Tutorial](#python-tutorial的例子清单) |
| 23 | +- [Get Started](#get-started) |
| 24 | +- [Contact](#Contact) |
| 25 | +- [Cite](#Cite) |
| 26 | +- [Reference](#reference) |
10 | 27 |
|
11 | | -| **目录** | **主题** | 简要说明 | |
12 | | -| --------------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | |
| 28 | + |
| 29 | +# python-tutorial的例子清单 |
| 30 | + |
| 31 | +| **目录** | **主题** | 简要说明 | |
| 32 | +| --------------------- | -------------------------------------------- | ---------------------------- | |
13 | 33 | | 01_base | Python基础 | 提供了数据类型、字符串、list、条件判断、循环的使用例子。 | |
14 | 34 | | 02_advanced | Python高级特性 | 提供了切片、迭代、生成器、迭代器的使用例子。 | |
15 | 35 | | 03_oop | 面向对象编程 | 提供了多重继承、定制类、枚举类、设计模式的使用例子。 | |
@@ -56,4 +76,51 @@ xgboost 文本分类 |
56 | 76 |
|
57 | 77 |
|
58 | 78 | [xgb_lr.py](xgb_lr.py) |
59 | | -xgboost 提取特征之间的关系,再用lr文本分类 |
| 79 | +xgboost 提取特征之间的关系,再用lr文本分类 |
| 80 | + |
| 81 | +# Get Started |
| 82 | + |
| 83 | + |
| 84 | + |
| 85 | + |
| 86 | +# Contact |
| 87 | + |
| 88 | +- Issue(建议):[](https://github.com/shibing624/python-tutorial/issues) |
| 89 | +- 邮件我:xuming: xuming624@qq.com |
| 90 | +- 微信我: |
| 91 | +加我*微信号:xuming624, 备注:个人名称-NLP* 进Python-NLP交流群。 |
| 92 | + |
| 93 | +<img src="docs/wechat.jpeg" width="200" /> |
| 94 | + |
| 95 | + |
| 96 | +# Cite |
| 97 | + |
| 98 | +如果你在研究中使用了python-tutorial,请按如下格式引用: |
| 99 | + |
| 100 | +```latex |
| 101 | +@software{python-tutorial, |
| 102 | + author = {Xu Ming}, |
| 103 | + title = {python-tutorial: Python3 Tutorial for Get Started Developer}, |
| 104 | + year = {2021}, |
| 105 | + url = {https://github.com/shibing624/python-tutorial}, |
| 106 | +} |
| 107 | +``` |
| 108 | + |
| 109 | +# License |
| 110 | + |
| 111 | + |
| 112 | +授权协议为 [The Apache License 2.0](/LICENSE),可免费用做商业用途。请在产品说明中附加python-tutorial的链接和授权协议。 |
| 113 | + |
| 114 | + |
| 115 | +# Contribute |
| 116 | +项目代码还很粗糙,如果大家对代码有所改进,欢迎提交回本项目,在提交之前,注意以下两点: |
| 117 | + |
| 118 | + - 在本地进行单元测试 |
| 119 | + - 确保所有单测都是通过的 |
| 120 | + |
| 121 | +之后即可提交PR。 |
| 122 | + |
| 123 | +# Reference |
| 124 | + |
| 125 | +1. [缪雪峰Python3教程](https://www.liaoxuefeng.com/wiki/1016959663602400) |
| 126 | +2. [PythonDataScienceHandbook](https://github.com/jakevdp/PythonDataScienceHandbook) |
0 commit comments