上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 22 下一页
摘要: 1.id 选择器 #idname{color:red;} 2.class选择器 .classname{} 3.标签选择器 div{} 4.通配符选择器 *{} 5. 属性选择器 [id]{ } 5.选择器权重 !important >行距样式选择器>id>class | 属性>标签>通配符 使用cs 阅读全文
posted @ 2018-11-25 22:31 流星小子 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 1. 浏览器 内核 2 IE trident 3 Firefox Gecko 4 Google chrome webkit/blink 5 Safari webkit Opera presto 阅读全文
posted @ 2018-11-25 18:47 流星小子 阅读(111) 评论(0) 推荐(0) 编辑
摘要: EasyRecovery恢复软件就不错 360安全卫士里面的文件恢复也不错 阅读全文
posted @ 2018-11-24 23:05 流星小子 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 冒泡排序时间复杂度:O(n^2) 阅读全文
posted @ 2018-11-17 14:52 流星小子 阅读(454) 评论(0) 推荐(0) 编辑
摘要: # 4*4矩阵旋转90度 def matrix_transposition(data): for index,row in enumerate(data): for col in range(index,len(row)): temp = data[index][col] data[index][c 阅读全文
posted @ 2018-11-14 21:54 流星小子 阅读(5126) 评论(0) 推荐(0) 编辑
摘要: 你好 在刚刚安装的Windows10 conda上,我很惊讶地被告知要将Navigator从1.7.0升级到1.8.2,因为我刚刚安装它。由于软件包没有安装在Navigator上,我尝试使用下面的命令升级,因为导航器升级只是运行了太长时间(超过30分钟)。 conda更新anaconda-navig 阅读全文
posted @ 2018-11-12 11:24 流星小子 阅读(4028) 评论(1) 推荐(0) 编辑
摘要: 步骤一: 步骤二: 阅读全文
posted @ 2018-11-11 23:00 流星小子 阅读(198) 评论(0) 推荐(0) 编辑
摘要: Window7环境下安装Scrapy Scrapy在CPython(默认Python实现)和PyPy(从PyPy 5.9开始)下运行Python 2.7和Python 3.4或更高版本。 如果您使用的是Anaconda或Miniconda,您可以从conda- forge通道安装该软件包,该软件包含 阅读全文
posted @ 2018-11-11 22:31 流星小子 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 二分查找法实战 def binary_search(datasets, find_in): mid = int(len(datasets)/2) if(mid>0): if(find_in>datasets[mid]): binary_search(datasets[mid:],find_in) elif(find_in<d... 阅读全文
posted @ 2018-11-11 22:13 流星小子 阅读(226) 评论(0) 推荐(0) 编辑
摘要: sql server中变量要先申明后赋值: 局部变量用一个@标识,全局变量用两个@(常用的全局变量一般都是已经定义好的); 申明局部变量语法:declare @变量名 数据类型;例如:declare @num int; 赋值:有两种方法式(@num为变量名,value为值) set @num=val 阅读全文
posted @ 2018-11-09 11:28 流星小子 阅读(1610) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 22 下一页