随笔分类 - python
摘要:1 yum安装 yum update && yum install python3 -y 2 从源码安装 参考了https://zhuanlan.zhihu.com/p/50171379 a 安装开发工具 yum install make automake gcc gcc-c++ kernel-de
阅读全文
摘要:1 先读后写(python3) #!/usr/bin/python import json with open("replayScript.json", "r",encoding='utf-8') as jsonFile: data = json.load(jsonFile) tmp = data[
阅读全文