# 本节内容: # 解析复杂的 HTML网页: # 1--bs.find() bs.find_all() tag.get_text() # find_all(tag/tag_list,attributes_dict,recursive,text,limit,keywords) # find(tag/ ...
分类:
其他好文 时间:
2020-06-22 20:59:01
阅读次数:
47
find / -name postgresql-12.service res:/usr/lib/systemd/system/postgresql-12.service [Service]Environment=PGDATA=/data/pgsql/data2 修改数据存放目录修改后重启 登录数据库 ...
分类:
数据库 时间:
2020-06-22 18:45:00
阅读次数:
71
2、Linux目录操作命令 切换目录操作:cd change directory 更改目录、路径 建立目录:mkdir make directory 创建一个空目录 删除目录:rmdir remove directory 删除一个空目录 删除:rm remove 删除文件或目录(空目录和非空目录都可 ...
分类:
系统相关 时间:
2020-06-22 17:28:40
阅读次数:
87
题目如下: Given an array of integers arr and an integer k. Find the least number of unique integers after removing exactly k elements. Example 1: Input: a ...
分类:
其他好文 时间:
2020-06-22 15:12:41
阅读次数:
60
Android Studio , Flutter , IDEA 工程报错 unable to find valid certification path to requested target 最新解决方案Android Studio工程进入到我这篇博客之前,相信大家都看过这篇文章啦,彻底解决una ...
分类:
移动开发 时间:
2020-06-22 14:39:07
阅读次数:
99
服务器环境 准备三台服务器集群 服务器名称 IP地址 node-1 192.168.1.182 node-2 192.168.1.183 node-3 192.168.1.184 服务集群配置 vi elasticsearch.yml cluster.name: myes ###保证三台服务器节点集 ...
分类:
其他好文 时间:
2020-06-22 10:58:01
阅读次数:
60
给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。 示例 1: 输入: "abcabcbb"输出: 3 解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。示例 2: 输入: "bbbbb"输出: 1解释: 因为无重复字符的最长子串是 "b",所以其长度为 1。示例 3: ...
分类:
其他好文 时间:
2020-06-21 23:27:36
阅读次数:
49
from selenium import webdriverfrom time import sleep#Chrome_options常规操作#1.如何在调用浏览器时候就是最大化窗体?#2.自动化启动时,如何驱动浏览器警告条#3.浏览器在启动时,如何有缓存#4.浏览器如何在隐身模式与常规模式切换op ...
分类:
Web程序 时间:
2020-06-21 23:14:30
阅读次数:
310
Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj) of elements in this subset satisfies: Si % Sj = 0 or ...
分类:
其他好文 时间:
2020-06-21 22:53:58
阅读次数:
60
磁盘 磁盘为系统提供了最基本的持久化存储。 文件系统 文件系统则在磁盘的基础上,提供了一个用来管理文件的树状结构 组织方式不同,就会形成不同的文件系统。 为了方便管理,Linux 文件系统为每个文件都分配两个数据结构,索引节点(index node)和目录项(directory entry)。它们主 ...
分类:
系统相关 时间:
2020-06-21 21:41:31
阅读次数:
72