import xml.etree.ElementTree as ET data=ET.parse('xml_lesson') root=data.getroot() for i in root: for j in i: print(j.tag) for i in root: print(i.attr ...
分类:
编程语言 时间:
2020-02-13 17:11:09
阅读次数:
74
看到已有的题解几乎都是栈操作,但是考虑到leetcode的数据量一直都不大,所以跑一般oj10w长度的字符串很难说栈操作会不会超时,因此尝试生成了10w长度的数据,结果果然效率不够高,因此打算来记录一下笔者的解法 以给的范例"(ed(et(oc))el)"为例,从左到右开始计算,e从1到8,d从2到 ...
分类:
其他好文 时间:
2020-02-09 16:57:52
阅读次数:
146
前言 安装了 Linux 并设置中文后,为了操作起来更便捷准备安装一个中文输入法 之前安装搜狗输入法,由于搜狗输入法基于 qt4,估计短期是 GG 了 所以这次选择了 Google 输入法 以下是安装 google 输入法的方法 1、更换更新源 打开终端,输入下边命令打开更新源的文件 vim /et ...
分类:
其他好文 时间:
2020-02-07 20:54:55
阅读次数:
96
CAT ET III Caterpillar Scanner Features: Display graph and log status parameters. Retrieve prognostic data including histograms, engine totals for fue ...
分类:
其他好文 时间:
2020-02-02 12:21:10
阅读次数:
90
$\underline{Def:}$A topology space $X=(\underline{X},\eth_{x})$consists of a set $\underline{X}$,called the underlying space of $X$ ,and a family $\et ...
分类:
其他好文 时间:
2020-01-24 22:33:09
阅读次数:
96
CAT ET III Caterpillar Scanner Features: Display graph and log status parameters. Retrieve prognostic data including histograms, engine totals for fue ...
分类:
其他好文 时间:
2020-01-22 20:15:31
阅读次数:
88
CAT ET III Caterpillar Scanner Features: Display graph and log status parameters. Retrieve prognostic data including histograms, engine totals for fue ...
分类:
其他好文 时间:
2020-01-22 20:04:43
阅读次数:
64
etcd 部署 wget https://github.com/etcd-io/etcd/releases/download/v3.3.13/etcd-v3.3.13-linux-amd64.tar.gz tar -zxvf etcd-v3.3.13-linux-amd64.tar.gz cd et ...
分类:
其他好文 时间:
2020-01-20 12:41:48
阅读次数:
95
import requests import lxml.etree as etree import xml.etree.ElementTree as ET # 详情页 # 3093-148 # http://www.etymon.cn/yingyucigen/148.html def getTgeP ...
分类:
Web程序 时间:
2020-01-14 10:09:49
阅读次数:
111
[TOC] "He K, Zhang X, Ren S, et al. Deep Residual Learning for Image Recognition[C]. computer vision and pattern recognition, 2016: 770 778." @article ...
分类:
Web程序 时间:
2020-01-11 23:53:54
阅读次数:
171