码迷,mamicode.com
首页 >  
搜索关键字:search for a range    ( 21670个结果
Cisco Packet Tracer :PVST Self-detection Experiment
01.STP Configuration Activity 5.2.5: Configuring STP NOTE TO USER: Although you can complete this activity without printed instructions, a PDF version ...
分类:系统相关   时间:2021-06-24 17:37:01    阅读次数:0
python构建数组
来源:https://www.cnblogs.com/dylancao/p/10019528.html 一 直接定义法: 1.直接定义 matrix=[0,1,2,3] 2.间接定义 matrix=[0 for i in range(4)] print(matrix) 二 Numpy方法: Nump ...
分类:编程语言   时间:2021-06-23 16:54:47    阅读次数:0
ES6中的Proxy
第一次接触proxy这个单词的时候,还是在设置浏览器代理的时候 ,今天注意到在es6新语法中,也出现了这个词,才准备研究研究这个神奇的东西是怎么用的。学习之后,在小编的简单理解,就和小区门口站岗的保安类似,满足条件才允许放行。在数据中,就是在获取值或者设置值的时候有个规则。大家还可以关注我的微信公众 ...
分类:其他好文   时间:2021-06-22 18:21:28    阅读次数:0
Elasticsearch-文档查询
Elasticsearch-文档查询 数据准备 查询 简单查询 mall/goods/1 条件查询 GET mall/goods/_search?q=b_name: "如何" 复杂查询 匹配查询 GET mall/goods/_search { "query": { "match": { "b_na ...
分类:其他好文   时间:2021-06-22 18:01:13    阅读次数:0
go 学习
#go语言 用go统计字符串中汉字的数量 package main // 声明 main 包,表明当前是一个可执行程序 import ( "fmt" ) func main() { a := 0 s1 := "hello沙河小王子" for _, i := range s1 { if i > 'z' ...
分类:其他好文   时间:2021-06-21 20:34:27    阅读次数:0
1235. Maximum Profit in Job Scheduling
We have n jobs, where every job is scheduled to be done from startTime[i] to endTime[i], obtaining a profit of profit[i]. You're given the startTime,  ...
分类:其他好文   时间:2021-06-21 20:22:26    阅读次数:0
python 基础算法
1 #算法:解决问题的方法和步骤 2 3 #排序算法 4 #选择排序 5 def select(items, comp = lambda x,y : x <y): 6 #通过隐藏函数lambda判断两个数的大小 7 items = items[:] 8 for i in range(len(item ...
分类:编程语言   时间:2021-06-21 20:06:24    阅读次数:0
python 实例
# 四位验证码 """四位数验证码""" code="" for i in range(4): print(i) index = random.randrange(4) #0-3 中随机取一个数 if index != i and index + 1 != i: code +=chr(random. ...
分类:编程语言   时间:2021-06-20 18:07:43    阅读次数:0
实验六
from turtle import * def square(size=50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) for ...
分类:其他好文   时间:2021-06-18 20:05:27    阅读次数:0
实验六
from turtle import *def moveto(x,y): penup() goto(x,y) pendown()def main(): setup(800, 600) speed(0) for radius in range(20, 200, 20): moveto(0, -radi ...
分类:其他好文   时间:2021-06-18 20:00:08    阅读次数:0
21670条   上一页 1 ... 3 4 5 6 7 ... 2167 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!