1、datetime格式化字符串时,用到的匹配符,比如‘%d’表示当月天数,‘%Y’表示年,其他的可以参考这里:
https://www.cnblogs.com/fwl8888/p/9635505.html
2、pandas的API,主要用到了Dataframe和Series:
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html
3、Python-dash的很基础教学,十讲入门,感觉很适合新手:
http://liangfan.tech/2018/12/05/Python-Dash%E5%8D%81%E8%AE%B2%E4%B9%8B1-Dash%E6%A6%82%E8%BF%B0/
4、xlwt模块操作Excel的方法:
https://www.jb51.net/article/137220.htm
5、python调用sqlite3模块的API:
https://docs.python.org/2/library/sqlite3.html#sqlite3-controlling-transactions
6、python标准库网址:
https://docs.python.org/zh-cn/3.7/library/index.html
7、Dash可视化数据图表的API:
https://plot.ly/python/reference/#layout-yaxis-title
8、Python上传git时,需要默认忽略的文件(.gitignore 文件):
https://github.com/github/gitignore/blob/master/Python.gitignore
9、Pandas 基本操作文档说明:
https://www.yiibai.com/pandas/python_pandas_descriptive_statistics.html
10、比较两个list,取差集、并集、交集
https://www.cnblogs.com/jlf0103/p/8882896.html
11、路径操作库 pathlib ,很好用,下面这是写的用法,当然可以去官网看
https://blog.youkuaiyun.com/amanfromearth/article/details/80265843
12、Airflow可编程、监控、调度的工作平台,可以设置一些需要自动运行的任务,很好的工具
https://www.cnblogs.com/cord/p/9450910.html
13、Plotly图标的示例,这里集合了很多例子,可以参考做出各种数据图表
https://plot.ly/python/plotly-fundamentals/
https://dash-gallery.plotly.host/Portal/?search=
14、Dash可视化数据的官方论坛,在里面可以找到一些解决问题的方法,最好是搜索都看看
15、比较全面的学习网站,里面包含了好多语言的基础教程
https://www.runoob.com/python3/python3-tutorial.html
17、