搜索结果
查询Tags标签: false,共有 1478条记录-
知识图谱:【图数据库Nebula(五)】——Nebula Importer导入数据
文章目录 Step 1. 启动Nebula容器Step 2. 连接 Nebula Graph 服务器Step 3. 通过nebula命令行创建图的SchemaStep 4. 获取数据集Step 5. 将测试数据集移动到import目录下并删除表头Step 6. 执行如下命令,等待导入完成Step 1. 启动Nebula容器 docker run --rm -ti --netwo…
2021/10/25 2:13:16 人评论 次浏览 -
RabbitMQ
RabbitMQ 1. MQ的相关概念1.1什么是MQ1.2MQ的特点1.3MQ分类 2.Rabbit MQ2.1Rabbit MQ概念2.2四大核心概念2.3各个名词介绍 3.Hello World简单实现4.Work Queues4.1轮训分发消息4.1.1 抽取工具类4.1.2启动两个工作线程4.1.3启动一个发送线程 4.2 消息应答4.2.1 概念4.2.2自…
2021/10/24 23:11:16 人评论 次浏览 -
RabbitMQ
RabbitMQ 1. MQ的相关概念1.1什么是MQ1.2MQ的特点1.3MQ分类 2.Rabbit MQ2.1Rabbit MQ概念2.2四大核心概念2.3各个名词介绍 3.Hello World简单实现4.Work Queues4.1轮训分发消息4.1.1 抽取工具类4.1.2启动两个工作线程4.1.3启动一个发送线程 4.2 消息应答4.2.1 概念4.2.2自…
2021/10/24 23:11:16 人评论 次浏览 -
7段数码管绘制
代码: import turtle, datetime def drawGap(): turtle.penup() turtle.fd(5) def drawLine(draw): drawGap() turtle.pendown() if draw else turtle.penup() turtle.fd(40) drawGap() turtle.right(90) def drawDigit(d): drawLine(True) if d…
2021/10/24 6:12:07 人评论 次浏览 -
7段数码管绘制
代码: import turtle, datetime def drawGap(): turtle.penup() turtle.fd(5) def drawLine(draw): drawGap() turtle.pendown() if draw else turtle.penup() turtle.fd(40) drawGap() turtle.right(90) def drawDigit(d): drawLine(True) if d…
2021/10/24 6:12:07 人评论 次浏览 -
7段数码管绘制
import turtle, datetimedef drawGap(): # 绘制数码管间隔 turtle.penup() turtle.fd(5) def drawLine(draw): # 绘制单段数码管 drawGap() turtle.pendown() if draw else turtle.penup() turtle.fd(40) drawGap() turtle.right(90) def drawDigi…
2021/10/24 6:11:44 人评论 次浏览 -
7段数码管绘制
import turtle, datetimedef drawGap(): # 绘制数码管间隔 turtle.penup() turtle.fd(5) def drawLine(draw): # 绘制单段数码管 drawGap() turtle.pendown() if draw else turtle.penup() turtle.fd(40) drawGap() turtle.right(90) def drawDigi…
2021/10/24 6:11:44 人评论 次浏览 -
7段数码管绘制
import turtle as timport timedef drawgap(): t.pu() t.fd(5)def drawline(draw): t.pendown() if draw else t.penup() t.fd(40) drawgap() t.right(90)def drawdigit(digit): drawline(True) if digit in [2,3,4,5,6,8,9] else drawline(False) …
2021/10/23 23:42:35 人评论 次浏览 -
7段数码管绘制
import turtle as timport timedef drawgap(): t.pu() t.fd(5)def drawline(draw): t.pendown() if draw else t.penup() t.fd(40) drawgap() t.right(90)def drawdigit(digit): drawline(True) if digit in [2,3,4,5,6,8,9] else drawline(False) …
2021/10/23 23:42:35 人评论 次浏览 -
7段数码管绘制(尾号0,1)
代码如下: import turtle as timport timedef popspace(): t.penup() t.fd(5)def popline(draw): popspace() t.pendown() if draw else t.penup() t.fd(40) popspace() t.right(90)def popstart(d): popline(True) if d in [2,3,4,5,6,8,9…
2021/10/23 23:41:14 人评论 次浏览 -
7段数码管绘制(尾号0,1)
代码如下: import turtle as timport timedef popspace(): t.penup() t.fd(5)def popline(draw): popspace() t.pendown() if draw else t.penup() t.fd(40) popspace() t.right(90)def popstart(d): popline(True) if d in [2,3,4,5,6,8,9…
2021/10/23 23:41:14 人评论 次浏览 -
7段数码管绘制
import turtle, datetimedef drawGap(): # 绘制数码管间隔 turtle.penup() turtle.fd(5) def drawLine(draw): # 绘制单段数码管 drawGap() turtle.pendown() if draw else turtle.penup() turtle.fd(40) drawGap() turtle.right(90) def drawDigi…
2021/10/23 23:41:01 人评论 次浏览 -
7段数码管绘制
import turtle, datetimedef drawGap(): # 绘制数码管间隔 turtle.penup() turtle.fd(5) def drawLine(draw): # 绘制单段数码管 drawGap() turtle.pendown() if draw else turtle.penup() turtle.fd(40) drawGap() turtle.right(90) def drawDigi…
2021/10/23 23:41:01 人评论 次浏览 -
程序设计与算法(三)C++面向对象程序设计 第七周 相关笔记
1、cerr freopen cout输出到文件内时,cerr能输出到控制台显示 2、cin.getline() defalut -> \n#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0); #include<bits/stdc++.h> using namespace std; int main(){//IOS;//freopen("a.txt&q…
2021/10/23 11:10:15 人评论 次浏览 -
程序设计与算法(三)C++面向对象程序设计 第七周 相关笔记
1、cerr freopen cout输出到文件内时,cerr能输出到控制台显示 2、cin.getline() defalut -> \n#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0); #include<bits/stdc++.h> using namespace std; int main(){//IOS;//freopen("a.txt&q…
2021/10/23 11:10:15 人评论 次浏览