码迷,mamicode.com
首页 >  
搜索关键字:strip    ( 2365个结果
chromium 禁止tab标签拖动到其他窗口
C:\feikua\chromium\src\chrome\browser\ui\views\tabs\tab_drag_controller.cc if (tab_strip_changed) { is_dragging_new_browser_ = false; did_restore_wind ...
分类:其他好文   时间:2021-06-17 17:06:39    阅读次数:0
代码;登录,转账,取款,查询余额,更改密码。
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
python:文件操作
打开文件 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
(补充)交叉编译器安装配置
交叉编译器的安装和使用 环境Ubuntu 20.04 LTS 前面教程提到了交叉编译器,忘了写具体的安装和配置方式,在这里补充一下 gcc编译器编译的程序只能在x86环境下运行,而不能在arm上运行 gcc运行方式 直接写一个程序hello.c然后输入命令 sudo gcc hello.c #编译器 ...
分类:其他好文   时间:2021-06-02 19:53:24    阅读次数:0
Python解二元二次方程组
from sympy import * a,b=0,0 n = Symbol('n') k= Symbol('k') with open("ab.txt") as f: for line in f.readlines(): ab=line.split('\t') line = line.strip( ...
分类:编程语言   时间:2021-06-02 17:24:00    阅读次数:0
实验四
f = open(r'data6_1.txt') f1=open('data6_2.txt','w') a = list(f) a.sort(key=lambda x : x[8:]) a.reverse() for i in a: i=i.strip('\n') f1.write(''.join( ...
分类:其他好文   时间:2021-05-24 14:43:52    阅读次数:0
实验四
with open('data1_1.txt', 'r', encoding = 'utf-8') as f: data=f.readlines()n = 0for line in data: if line.strip('\n') == '': continue n+=1print(f'共{n}行 ...
分类:其他好文   时间:2021-05-24 14:12:19    阅读次数:0
从车载激光点云数据轨迹数据中提取坐高斯标数据
import easygui import os path = easygui.fileopenbox()#path是打开的文件的全路径 if path:#如果选择打开文件,没有选择取消 b = os.path.splitext(path)#把打开的文件的全路径分割成文件名和后缀名 c = [b[0 ...
分类:其他好文   时间:2021-05-24 01:31:34    阅读次数:0
Collections之OrderedDict()
def str_to_dic(headerStr, stripIsNotvalid=None): dict = collections.OrderedDict() #对字典对象中元素的排序。 if headerStr.strip(): for headItem in headerStr.split( ...
分类:其他好文   时间:2021-05-24 00:24:16    阅读次数:0
2365条   1 2 3 4 ... 237 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!