摘要:
安装:pip install lxml 然后修改:bso = BeautifulSoup(html.read(),"html.parser")
阅读全文
posted @ 2021-10-05 14:44
zhuangjie
阅读(232)
推荐(0)
摘要:
将你要安装的插件文件夹放在 C:\Program Files\Common Files\Adobe\CEP\extensions 这个文件下
阅读全文
posted @ 2021-10-03 22:33
zhuangjie
阅读(641)
推荐(0)
摘要:
基本环境: yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gcc make 常用解压包解压命令: tar -xvJf .tar.xz //解
阅读全文
posted @ 2021-10-03 18:58
zhuangjie
阅读(4744)
推荐(0)
posted @ 2021-09-20 21:37
zhuangjie
阅读(63)
推荐(0)
摘要:
public boolean isCircle() { if(first == null || first.next == null) return false; Node<U> slow = first; Node<U> fast = first.next; int i = 1; while (f
阅读全文
posted @ 2021-09-18 17:20
zhuangjie
阅读(54)
推荐(0)
摘要:
首先我们需要检查一下CPU VT-x状态是否启用。 下载LeoMoon CPU-V 检查一下CPU VT-x状态是否启用。 工具下载地址:https://leomoon.com/static/?file=leomoon-cpu-v_win.zip 图2 如果未启用 VT-x启用状态这里会有一个大红叉
阅读全文
posted @ 2021-09-17 22:39
zhuangjie
阅读(3629)
推荐(0)
摘要:
调用 insteadList 反转数组 public Node<U> reverseList(Node<U> head) { if(head == null ) return null; Node<U> new_head = reverseList(head.next); if(new_head !
阅读全文
posted @ 2021-09-17 08:58
zhuangjie
阅读(66)
推荐(0)
摘要:
Gnirehtet – 为 Android 设备提供反向网络连接[Windows、macOS、Linux] 准备: gnirehtet (选择gnirehtet-rust-win64.zip):https://github.com/Genymobile/gnirehtet 使用:压缩放在喜欢的地方,
阅读全文
posted @ 2021-09-14 17:54
zhuangjie
阅读(855)
推荐(0)
摘要:
公式法有两个公式: 立方和公式:a^3+b^3=(a+b) (a^2-ab+b^2)立方差公式:a^3-b^3=(a-b) (a^2+ab+b^2)
阅读全文
posted @ 2021-09-09 17:11
zhuangjie
阅读(4681)
推荐(0)
摘要:
A是B的充分条件,A,C,D...任意一个存在都能使B成立。 A是B的必要条件,A+C+D多个条件才能推出B 取自: https://www.zhihu.com/question/30469121
阅读全文
posted @ 2021-09-09 16:08
zhuangjie
阅读(80)
推荐(0)