上一页 1 ··· 14 15 16 17 18
摘要: ​ 1、连接数据库 consql = create_engine('mysql+pymysql://root:123456@localhost:3366/policy_total_data', encoding='utf8') 2.使用read_sql函数 db_df1 = pd.read_sql( 阅读全文
posted @ 2021-06-30 17:51 新茶煮酒 阅读(471) 评论(0) 推荐(0) 编辑
摘要: ​ 1.原数据以0开头 ​ 2.在read_csv中,加入参数dtype=object df = pd.read_csv('./rate_file/rate_20200216.csv', low_memory=False, sep=',', encoding="UTF-8", header=None 阅读全文
posted @ 2021-06-30 17:50 新茶煮酒 阅读(1018) 评论(0) 推荐(0) 编辑
摘要: 如果在只是想匹配模式的上下几行,grep可以实现。 grep -5 'parttern' inputfile //打印匹配行的前后5行 grep -C 5 'parttern' inputfile //打印匹配行的前后5行 grep -A 5 'parttern' inputfile //打印匹配行 阅读全文
posted @ 2021-06-29 16:32 新茶煮酒 阅读(798) 评论(0) 推荐(0) 编辑
摘要: function check(){ expect -c " spawn ssh -A -q -\oStrictHostKeyChecking=no user@IP -t \" sudo timeout 2s sh test.sh \" expect { \"*assword\" { send \"p 阅读全文
posted @ 2021-06-18 19:25 新茶煮酒 阅读(62) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18