flag = Trued = {}with open('b.txt', mode='rt', encoding='utf-8') as f: res = f.readlines() for line in res: i = line.strip('\n').split(':') d[i[0]] = ...
分类:
其他好文 时间:
2021-06-15 17:54:21
阅读次数:
0
d = {}with open('b.txt', mode='rt', encoding='utf-8') as f: res = f.readlines() for line in res: i = line.strip('\n').split(':') d[i[0]] = i[1]while T ...
分类:
其他好文 时间:
2021-06-15 17:52:42
阅读次数:
0
open SYSCALL_DEFINE3(open, const char __user *, filename, int, flags, umode_t, mode) { ...... return do_sys_open(AT_FDCWD, filename, flags, mode); } l ...
分类:
其他好文 时间:
2021-06-15 17:45:08
阅读次数:
0
Linux中任何一个命令,当你用心研究到深处时,也许总能有着新的发现或者有趣的用途,如下方的pwd命令 对于pwd命令,大家都知道是用于打印当前的工作目录路径,而且是绝对路径 pwd命令两个选项的,默认就是使用(-L), 当然还有一个选项就是-P (大写的P) pwd默认输出的当前工作目录的全路径( ...
分类:
其他好文 时间:
2021-06-15 17:41:40
阅读次数:
0
CentOS 安装 nginx 教程 下载安装包 cd /usr/local wget http://nginx.org/download/nginx-1.19.8.tar.gz 安装依赖 yum install gcc-c++ yum install pcre yum install pcre-d ...
分类:
其他好文 时间:
2021-06-13 10:38:46
阅读次数:
0
Python环境搭建之OpenCV 一、openCV介绍 Open Source Computer Vision Library.OpenCV于1999年由Intel建立,如今由Willow Garage提供支持。OpenCV是一个基于BSD许可(开源)发行的跨平台计算机视觉库,可以运行在Linux ...
分类:
编程语言 时间:
2021-06-13 10:21:38
阅读次数:
0
什么是 readme§ A readme (or read me) file contains information about other files in a directory or archive and is very commonly distributed with computer ...
分类:
其他好文 时间:
2021-06-13 09:57:10
阅读次数:
0
假设两个操作者分别为$A$和$B$,其中$A$希望最大、$B$希望最小 (并不默认$A$为整局游戏的先手,仅是最终的结果考虑$A$为先手时) 记第$i$个队列第$j$个元素为$a_{i,j}$(其中$1\le i\le k,1\le j\le n_{i}$) 特判$n_{i}=1$的队列,直接把队列 ...
分类:
其他好文 时间:
2021-06-13 09:24:24
阅读次数:
0
打开文件 with open with open(file_name,access_mode,encoding) for line in f.readlines(): print(line.strip()) #调用read()会一次性读取文件的全部内容,如果文件有10G,内存就爆了,所以,要保险起见 ...
分类:
编程语言 时间:
2021-06-11 18:52:26
阅读次数:
0
yaml文件读取: def read_yaml(): with open("config.yaml", encoding='utf-8') as f: data = yaml.load(f.read(), Loader=yaml.FullLoader) print(data) ...
分类:
编程语言 时间:
2021-06-11 18:50:54
阅读次数:
0