动物 Dog 狗 Cat 猫 Fish 鱼 Bird 鸟 Cow 牛 Pig 猪 Mouse 老鼠 Horse 马 Wing 翅膀 Animal 动物 交通 Train 火车 Plane 飞机 Car 汽车 Truck 卡车 Bicycle 自行车 Bus 公共汽车 Boat 小艇 Ship 船 T ...
分类:
其他好文 时间:
2020-11-13 12:45:43
阅读次数:
3
实现:tkinter 画布上显示图片,按下鼠标左键并且移动,实现截图 # -*- encoding=utf-8 -*- import os import tkinter as tk from PIL import Image from PIL import ImageTk left_mouse_do ...
分类:
编程语言 时间:
2020-10-30 12:22:43
阅读次数:
28
修改配置文件,找到如下配置文件/usr/share/vim/vim/defaults.vim在82行找到如下内容:80ifhas(‘mouse‘)81if&term=~‘xterm‘82setmouse=a83else84setmouse=nvi85endif86endif修改为80ifhas(‘mouse‘)81if&term=~‘xterm‘82setmouse-=a//修改此
分类:
系统相关 时间:
2020-10-21 21:28:35
阅读次数:
39
bs4 全名 BeautifulSoup,是编写 python 爬虫常用库之一,主要用来解析 html 标签。 一、初始化 from bs4 import BeautifulSoup soup = BeautifulSoup("<html>A Html Text</html>", "html.par ...
分类:
其他好文 时间:
2020-10-14 20:26:32
阅读次数:
33
FatMouse believes that the fatter a mouse is, the faster it runs. To disprove this, you want to take the data on a collection of mice and put as large ...
分类:
其他好文 时间:
2020-09-23 23:55:07
阅读次数:
46
JS的移入和移除函数的区别 移入事件: mouseover 和 mouseenter 移除事件: mouseout 和 mouseleave mouseover 和 mouseenter的区别 mouseover: 移入时,移入当前元素以及子元素都会触发事件的发生 mouseenter: 移入时只会 ...
分类:
Web程序 时间:
2020-08-19 19:33:45
阅读次数:
78
<!DOCTYPE html><html lang="en"><head> <title>Title</title> <meta charset="UTF-8"><!--<!– <script src="js_file01.js"></script>–> 尽量放后 ...
分类:
Web程序 时间:
2020-08-18 13:17:18
阅读次数:
68
如果这个图是欧拉路,则每个顶点的出度等于入度。即out[i] = in[i] 如果这个图是半欧拉图,则起点的出度比入度大1,终点的入度比出度大1.其余顶点的出度等于入度。如果满足上述条件,就可以将所有单词链接起来,否则不能。 当然,在判断出度入度的时候还有一点需要注意,那就是除了起点终点以外的顶点, ...
分类:
其他好文 时间:
2020-08-10 17:33:39
阅读次数:
73
第一次使用 Debian9 系列的操作系统,发现默认有些小问题,使用不太习惯,在此做个记录。 1、使用Xshell远程Debian9后,vim无法使用鼠标粘贴 解决方法: 修改vim的配置文件 vim /usr/share/vim/vim80/defaults.vim 将 set mouse=a 改 ...
分类:
其他好文 时间:
2020-07-26 19:47:35
阅读次数:
110
HTML事件共分5类 Window事件(17个)、Form事件、Keyboard事件、Mouse事件、Media事件 Window事件(17个) 针对window对象的事件(应用到<body>书签) onafterprint :文档打印之后运行的脚本onbeforeprint、onbeforeunl ...
分类:
Web程序 时间:
2020-07-25 09:52:02
阅读次数:
111