4k 4 分钟

Make sure all the code blocks highlighted correctly. All the code samples are come from the demo of https://highlightjs.org

588 1 分钟

正常的 python dict 是按字母顺序排序的,所以要使用 OrderedDict 来自定义顺序 import collections data = collections.OrderedDict() data['b'] = 3 data['a'] = 1 data = jsonify(d) return make_response(data, 200) flask 框架的 jsonify 默认也是按字母顺序排序的,所以在 flask 项目启动时添加一个启动参数 app.config["JSON_SORT_KEYS"] =...
1.1k 1 分钟

def parse_html_table(): """ pip install bs4 pip install lxml pip install html5lib pip install pandas """ from bs4 import BeautifulSoup import pandas as pd import requests wiki_title =...
121 1 分钟

Base64 索引表 ASCII 码表 编码 (1)编码 “Man” (注意 Man 包含 3 个字符,是 3 的倍数) (2)编码的字节数不能被 3 整除,结尾补 0,若是 000000,则编码为 = # 参考 https://zh.wikipedia.org/wiki/Base64
520 1 分钟

谢希仁《计算机网络》注释 国际标准(SI/IEC/JEDEC) KiB(IEC) --> 1KiB = 1,024 Byte KB(SI) --> 1KB = 1,000 Byte KB(JEDEC) --> 1KB = 1,024 Byte SI 国际单位制,国际单位制以七个基本单位为基础,包括长度 - 米 m,质量 - 千克 kg,时间 - 秒 s,电流 - 安培 A,热力学温度 - 开尔文 K,物质的量 - 摩尔 mol,发光强度 - 坎德拉 cd; IEC 国际电工委员会是世界上最早的国际标准化组织,于 1906...
200 1 分钟

方法一: 进入 appstore 点击软件下载,此时会提示 200M 上限,然后 home 键返回桌面 进入配置,选择通用,选择日期与时间,将自动设置关闭,修改时间到将来的某一天,返回上一级,home 键返回桌面 点击一下刚刚下载软件的图标即可 方法二: 升级 IOS13 版本,但是当前为公测版本,阅读协议发现如下警告,所以不建议尝试 # 参考 https://www.youtube.com/watch?v=K3z513sg8FQ
824 1 分钟

(1) 根据某一列拆分 效果: 代码 (注意 index,如果 index 有重复会有问题,最好先 reset_index): if __name__ == '__main__': import pandas as pd df = pd.DataFrame({'Country': ['China,US', 'Japan,EU', 'UK,Australia', 'Singapore,Netherland'], 'Number': [100, 150, 120,...
578 1 分钟

插入时指定 dtype,一般为 varchar,长度写大一点 def set_d_type_dict(df): type_dict = {} for i, j in zip(df.columns, df.dtypes): if "object" in str(j): type_dict.update({i: VARCHAR(512)}) if "float" in str(j): type_dict.update({i: DECIMAL(19,...
600 1 分钟

if __name__ == '__main__': from sqlalchemy import create_engine from sqlalchemy import text db_url = "oracle://user:password@ip:port/?service_name=xxx" engine = create_engine(db_url, echo=True) connection = engine.connect() trans = connection.begin() param =...
168 1 分钟

在每行开始添加单引号,光标默认在第一行首位,按住 alt + shift + 方向键下拉,选中多行后直接输入单引号字符 选择 View -> Show Symbol -> Show End of Line, 末尾会出现 CR LF 字样,Ctrl + F 选择 Replace,输入 “\r\n”, 替换成 “',” 即可 演示: (或者替换 ^,代表替换行首,替换 $,代表替换行尾)