find
-
python中通过selenium简单操作及元素定位
浏览器的简单操作# 导入webdriver模块 # 创建driver对象,指定Chrome浏览器 driver = webdriver.Chrome()[详细]
2020-07-05 16:53 分类:Python -
树莓派pip安装opencv报错,Could not find a version that satisfies the requirement cv2 (from versions: )No matching distribution found for cv2
前言 我在使用pip install opencv-python 时报错 Could not find a version that satisfies the requirement opencv (from versions: ) No matching distribution found for opencv[详细]
2020-07-05 08:46 分类:Python -
linux文件系统和挂载
创建ISO文件 cp /dev/cdrom 目的地/.iso mkfs命令生成对应·的文件系统 但是使用mkfs没有办法修该生成的系统文件的某些特性,例如标记LABEL,如果强行修改会导致文件里面的内容丢失,说白了就是格式化分区。e2labe[详细]
2020-06-21 16:11 分类:Linux 1059 Prime Factors
Given any positive integer N, you are supposed to find all of its prime factors, and write them in the format N = p?1???k?1????×p?2???k?2????×?×p?m???k?m????.[详细]
2020-06-21 12:32 分类:Linux1009 Product of Polynomials (25 分)
This time, you are supposed to find A×B where A and B are two polynomials.[详细]
2020-06-21 09:06 分类:Linux-
启动django应用报错 “Error: [WinError 10013] 以一种访问权限不允许的方式做了一个访问套接字的尝试。”
启动django应用时报如下错误: “Error: [WinError 10013] 以一种访问权限不允许的方式做了一个访问套接字的尝试。”[详细]
2020-06-21 08:54 分类:Python -
【cmd】【5】检查开启了哪些端口,及特定的端口是否开启
正文: 1,开启了哪些端口,命令:netstat -ano 2,特定的端口是否开启,命令:netstat -ano -p tcp | find "3389" >nul 2>nul && echo 端口已开启 || echo 端口未开启 3,netstat的其他用法,命令:netstat /? 图...[详细]
2020-06-19 18:36 分类:路由交换