pandas 导入excel :https://blog.csdn.net/brink_compiling/article/details/76890198?locationNum=7&fps=1
元祖、字典、列表: https://www.cnblogs.com/Ericshang/p/5776573.html
如何导入新的包/python3:https://blog.csdn.net/u010801439/article/details/78460962
print用法:http://www.runoob.com/w3cnote/python3-print-func-b.html
字符串index用法:https://blog.csdn.net/sxingming/article/details/51471909
字符串split用法:http://www.runoob.com/python/att-string-split.html
如何在cmd运行py文件 https://zhidao.baidu.com/question/1961220456621107900.html
【dataframe】如何对dataframe切片操作
https://blog.csdn.net/brink_compiling/article/details/76890198?locationNum=7&fps=1
https://jingyan.baidu.com/article/a17d52853f879e8099c8f240.html
1、注释:用#号,多行用'''
2、指数:2**3
3、字符串c:
可以用 print(c[3:-1]) 截取(前面一个是正处往前数,后面一个是倒着数)
print(c*3)打印三遍 print(c+a)
c.split(" ")切割
4、字典可以内嵌列表元祖
5、set之后的list是无序的