public class iloveyouright{ public static void main(String[] args){ System.out.println("\t*\t\t\t*"); System.out.println("*\t\ti love you\t\t*"); Syst ...
分类:
编程语言 时间:
2020-03-06 15:34:08
阅读次数:
69
获取值的方式: $("input[name='killOrder']:checked").val(); $('input:radio:checked').val(); $("input[type='radio']:checked").val(); $(":radio[checked]").each(... ...
分类:
其他好文 时间:
2020-03-05 23:39:35
阅读次数:
175
一、is和do区别 (1)is是系动词 在句子中构成:主系表 I am a teacher. (2)do是助动词 帮助实义动词否定和疑问的动词。 什么是实义动词? (3)实义动词:有实际含义的动词,比如爱,这个词你可以知道对方爱你,能识别出意思的就是实义动词。 I love you. 你就可以得出对 ...
分类:
其他好文 时间:
2020-03-01 12:51:19
阅读次数:
98
伪类选择器一般会用在超链接a标签中,使用a标签的伪类选择器,我们一定要遵循"爱恨准则" LoVe HAte 1 /*没有被访问的a标签的样式*/ 2 .box ul li.item1 a:link{ 3 4 color: #666; 5 } 6 /*访问过后的a标签的样式*/ 7 .box ul l ...
分类:
其他好文 时间:
2020-02-29 13:05:33
阅读次数:
56
之前帮朋友写的脚本,运维大数据服务器时候用的。 #!/bin/bash ##磁盘数量 Disk=$( fdisk -l |grep 'Disk' |grep 'sd' |awk -F , '{print "%s",substr($1,13,1)}') var=${Disk: -1:1} echo b... ...
分类:
系统相关 时间:
2020-02-27 19:17:29
阅读次数:
124
format >>> "{0} love {1}".format('I','python') 'I love python' >>> "{a} love {b}".format(a='I',b='python') 'I love python' 位置参数必须在关键字参数之前 >>> "{0} lov ...
分类:
其他好文 时间:
2020-02-27 13:31:18
阅读次数:
54
a = "i love love you you" from collections import Counter dict( Counter(list(a.split())) ) Out[103]: {'i': 1, 'love': 2, 'you': 2} 或者: s = '11AAAdfdfB ...
分类:
其他好文 时间:
2020-02-26 22:44:56
阅读次数:
76
参考: 左程云进阶算法第8节视频内容(2小时18分钟处) 视频百度网盘:链接:https://pan.baidu.com/s/1beVfli8bmH9obwNW3NT3Kg 提取码:q5bi loveforever个人博客网站:https://zhenganwen.top/posts/310d483 ...
分类:
编程语言 时间:
2020-02-25 09:51:51
阅读次数:
73
The 12th Doctor’s last words: “Oh there it is. Silly old universe. The more I save it, the more it needs saving. It’s a treadmill. “Yes, Yes I know th ...
分类:
其他好文 时间:
2020-02-21 18:15:37
阅读次数:
91
import os # 创建的目录 path = "D:/gaona/liuhai/i love you" os.makedirs( path ) ...
分类:
其他好文 时间:
2020-02-20 20:36:08
阅读次数:
66