1、处理子标签和其他后代标签 后代descenddants()函数,一个父标签下面所有级别的标签。 子代children是父标签的下一个级 2、处理兄弟标签 next_siblings()函数,当前标签后面所有兄弟标签 previous_siblings()函数,当前标签前面所有兄弟标签;去掉s后是 ...
分类:
编程语言 时间:
2021-01-19 11:41:43
阅读次数:
0
爬小说网站,输出内容有时候会出现下图字符 首先,去掉“xa0” s = 'T-shirt\xa0\xa0短袖圆领衫,体恤衫\xa0' out = "".join(s.split()) print(out) 然后,去掉“\r\n” s = 'T-shirt,\r\n' s = s.strip() pr ...
分类:
编程语言 时间:
2021-01-18 11:26:26
阅读次数:
0
ssh远程管理服务 1.1 ssh介绍 ssh远程管理服务 默认linux是安装了的,如果没有安装执行以下命令。 [root@linux-server ~]# yum install -y openssh* [root@linux-server ~]# systemctl start sshd op ...
分类:
其他好文 时间:
2021-01-18 11:03:05
阅读次数:
0
错误一:安装nginx报错“src/os/unix/ngx_user.c:26:7: error: ‘struct crypt_data’ has no member named ‘current_salt’” “src/os/unix/ngx_user.c:26:7: error: ‘struct ...
分类:
其他好文 时间:
2021-01-18 10:49:25
阅读次数:
0
//远程触发的大坑: CSRF保护: Jenkins2.2版本之前可以手动关 Jenkins2.2版本之后,需要在配置文件中加入参数手动关 -Dhudson.security.csrf.GlobalCrumbIssuerConfiguration.DISABLE_CSRF_PROTECTION=tr ...
分类:
其他好文 时间:
2021-01-18 10:32:57
阅读次数:
0
Nginx在make时报错[objs/Makefile:469: objs/src/core/ngx_murmurhash.o] Error 在安装目录下执行 vim obj/Markfile 把Makefile文件的-Werror去掉 重新执行make ...
分类:
Web程序 时间:
2021-01-16 12:06:29
阅读次数:
0
##ImportError: attempted relative import with no known parent package ImportError: attempted relative import with no known parent package 截图: 或许是因为同文件 ...
分类:
其他好文 时间:
2021-01-15 11:43:37
阅读次数:
0
私以为很巧妙的一道计数题 (不会正经的dp做法) 题意:给一个长度为n,仅包含前m个小写字母的字符串S,求有多少个字符串由前m个小写字母构成的T,满足LCS(S,T) == n - 1 n <= 1e5,2 <= m <= 26 我们考虑枚举LCS,容易发现一定是S去掉某个字母得到的,又因为去掉连续 ...
分类:
其他好文 时间:
2021-01-14 11:23:28
阅读次数:
0
字符串的正则方法有:match()、replace()、search()、split() 正则对象的方法有:exec()、test() 正则方法讲解 match() 功能:使用正则表达式模式对字符串执行查找,并将包含查找的结果作为数组返回函数格式:stringObj.match(rgExp) str ...
分类:
其他好文 时间:
2021-01-13 11:04:50
阅读次数:
0
【C#MVC】 使用HttpWebRequest访问外部API,并返回json信息 (Access_Key) 在c#中调用外部API或者自己系统的API都是很简单的,这里提供使用HttpWebRequest的方式访问外部API,自定义了头部Access_key. 若外部系统没有此安全验证,可以去掉。 ...
分类:
数据库 时间:
2021-01-07 11:46:05
阅读次数:
0