jira python 认证
摘要:from jira import JIRAimport jira.clientimport urllib3urllib3.disable_warnings()options = { 'server':'https://xx,xxx,xxx/', 'verify': False #非必填}jira =
阅读全文
pandas
摘要:pandas参考文档:http://pandas.pydata.org/pandas-docs/stable/index.html 中文API文档:https://www.jianshu.com/p/a77b0bc736f2 数据处理最常用引入:
阅读全文
numpy
摘要:中文参考:https://www.numpy.org.cn/ github地址:https://github.com/teadocs/numpy-cn
阅读全文
python基础
摘要:python原生数据类型 数字: 字符串:切片遵循 左闭右开 列表:方括号内 逗号分隔,类型可不同,索引从0开始 元组:列表类似,元素不可修改,元组使用小括号, 字典:键值对方式,{}用来创建字典 集合:无序,不重复的序列(常用来去重)用{}或set()创建集合,空集合必须用set() 日期和时间
阅读全文