10 2020 档案
摘要:def submit(path): data = [] for line in open(path): if not line.strip(): continue _ = json.loads(line.strip()) res = predict(_["text"]) data.append(js
阅读全文
摘要:def execute_sql_file(sql_path): conn_alg,cur_alg = conn_mysql("mysql_algorithm",11433) with open(sql_path,'r+') as f: # every sql job last line marked
阅读全文
摘要:https://blog.csdn.net/xyisv/article/details/82430107
阅读全文
摘要:https://www.jianshu.com/p/24a693fff4a3 # -*- coding: utf-8 -*- import xlrd import uuid class Student(): def __init__(self, id, **kw): self.id = id for
阅读全文
摘要:python对齐输出 https://www.cnblogs.com/nul1/p/11136495.html python - 输出列表自动对齐(支持中英文混合) https://blog.csdn.net/weixin_44823747/article/details/108118181?utm
阅读全文