- 博客(7)
- 收藏
- 关注
原创 httputil.py - Invalid x-www-form-urlencoded body: ‘latin-1‘ codec can‘t encode characters in posi...
httputil latin-1
2022-07-29 17:33:19
739
原创 (Session info: chrome=99.0.4844.84) (Driver info: chromedriver=70.0.3538.97
windows服务器 selenium遇到的问题
2022-07-15 11:12:41
1101
原创 mapper [pos] of different type, current_type [geo_point], merged_type [ObjectMapper]
我在使用es7.1版本碰到的问题: mapper [pos] of different type, current_type [geo_point], merged_type [ObjectMapper] 是因为新增数据请求接口必须要用_doc 正确的用法:PUT index_name/_doc/id
2022-03-30 12:02:42
323
原创 比较简单的一种快速排序方法
快速排序 def quicksort(head, tail): head1 = head tail1 = tail tmp = arr[head] # 储存临时元素 # 如果头指针小于尾指针一直循环,直到相等找到元素的正确索引跳出循环 while head < tail: # 尾部数据大于临时元素,尾指针前移 while arr[tail] > tmp and head < tail:
2020-05-27 12:51:44
276
原创 Pandas常用方法
参考文章 from Pandas as pd pd.read_csv() pd.read_excel(‘1.xlsx’,sheet_name=[‘python’,‘student’]) pd.DataFrame(result, columns=head) pd.to_excel() pd.to_sql(‘test_cjk’,engine 1,if_exists=‘replace’,index =...
2019-10-25 11:43:45
111
原创 常用的一些Vim命令
G 移动到最后 gg dd 剪贴当前行 ndd d1G dG yy 复制当前行 nyy p下一行粘贴 P u撤销 Ctrl+r重做 I 行首 A 行尾 o下一行 O :%s/word/word1/gc c询问 :1,4s/str/str/g :set nu 设置行号 :nohl 可以取消高亮 D 从当前位置删除到行尾 (“d$” 的缩写) q:历史命令框 n查找下一条 N R替换输入...
2019-10-24 14:26:23
93
原创 Mac下Item2改变fish目录颜色
fish会默认使用linux的文件颜色配置,linux系统默认目录颜色是蓝色的,在黑背景下看不清楚。 设置目录颜色为青色 在~/.bash_profile下增加下面两行代码 export CLICOLOR=1 export LSCOLORS=Gxbxaxdxcxegedabagacad 显示效果如下: ...
2019-10-18 12:01:27
597
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人