Heredoc 结构的字符串与双引号("")字符串对比分析 <?php $str = <<<EOD Example of string spanning multiple lines using heredoc syntax. EOD; /* 含有变量的更复杂示例 */ class foo { va ...
分类:
Web程序 时间:
2020-06-15 22:52:39
阅读次数:
86
数据智能的现在与未来 https://www.msra.cn/zh-cn/news/executivebylines/tech-bylines-data-intelligent 张冬梅:跳远的诀窍与成功之道 https://www.msra.cn/zh-cn/news/people-stories/ ...
分类:
其他好文 时间:
2020-06-11 19:42:35
阅读次数:
138
使用 xpath 选择网页所使用的标签 request传递数据 html response formrequest 使用 登录界面 内容存储为json lines 文件 setting 文件设置实现 保存在json 文件中 LOG_FORMAT 日志的格式 LOG_DATEDORMAT 日志日期的格 ...
分类:
其他好文 时间:
2020-06-11 16:09:43
阅读次数:
59
在使用python for循环做数据处理时,会遇到某些文件为空,导致程序报错,可以使用dataframe.empty加if条件判断进行解决 例如: 1 data = pd.read_csv(file, skiprows=1, header=None, error_bad_lines=False) 2 ...
分类:
编程语言 时间:
2020-06-10 11:16:52
阅读次数:
168
源地址:首行数据 如何快速转为 变量名 ? 在日常工作中,我们导入的数据常常不那么规范,如下图所示,原本的变量名处在变量值的位置,若要重新提取变量名,单个变量依次重命名显然繁琐,那么我们有什么快捷的方法呢? convert_top_lines ssc install convert_top_line ...
分类:
其他好文 时间:
2020-06-09 22:10:03
阅读次数:
85
python 字符串常见的操作 x = 'abcdefghijklmnopqrstuvwxyz' # 使用内置函数 len 可以获取字符串的长度 print(len(x)) # 查找内容相关的方法 find/index/rfind/rindex 可以获得指定字符的下标 print(x.find('l ...
分类:
编程语言 时间:
2020-06-05 22:55:11
阅读次数:
88
pyplot绘图 import matplotlib.pyplot as plt import numpy as np x=np.linspace(0,10,100) siny=np.sin(x) cosy=np.cos(x) plt.plot(x,siny) #plt.plot(x,siny,co ...
分类:
其他好文 时间:
2020-06-02 11:02:56
阅读次数:
77
'''打印三角行; lines = int(input('请输入行数:'))for i in range(lines): for j in range(i): print("*",end= ' ') print()''''''打印倒立三角行;lines = int(input('请输入行数:'))f ...
分类:
编程语言 时间:
2020-05-30 17:10:44
阅读次数:
89
tom 85 90 jerry 95 80 lucy 80 90 rose 88 90 jay 76 75 summer 87 85 horry 84 80 dic = {} with open('score.txt','r') as f: lines = f.readlines() f.close ...
分类:
其他好文 时间:
2020-05-30 10:28:45
阅读次数:
107
ClientTools tools = new ClientTools(); ClientContext clientContext= tools.GetContext(OnlineSiteUrl, User, Pass, true); //false 本地 true ONline Web web ...