在线调试地址: Graphviz Online 用法: dot语法 Linux环境下用法: 参考资料: 1. Linux绘图工具之dot 2. 实验: 首先创建一个dot文件,fllow.dot vi fllow.dot digraph G { hello [shape=box]; world [s ...
分类:
其他好文 时间:
2021-04-08 13:10:42
阅读次数:
0
1、实验内容1 def main(): pass if __name__ == '__main__': main() x1, y1 = 1.2, 3.57 x2, y2 = 2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1 = {}, y1 = { ...
分类:
其他好文 时间:
2021-04-07 11:09:12
阅读次数:
0
信号发送 kill 和 raise函数 kill函数参数详解: 实验1 raise和kill 的使用 #include <stdio.h> #include <signal.h> #include <unistd.h> #include <stdlib.h> #include <sys/wait.h ...
分类:
其他好文 时间:
2021-04-06 15:18:50
阅读次数:
0
我们的L4R5ZI的开发版如下: 用USB转串口FT232做连接,PG9和PG10分别为RX和TX,不对就反过来接:) 如果程序没有问题的话,我们打开如串口显示助手,配置好相关参数,可以看到如下页面: 我们可以输入't','b','l','e'执行相应遍历套件指令。 输入't',不用加回车换行,得出 ...
分类:
其他好文 时间:
2021-04-05 12:52:57
阅读次数:
0
x1, y1 = 1.2, 3.57 x2, y2 = 2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1 = {}, y1 = {}'.format(x1, y1)) print('x2 = {}, y2 = {}'.format(x2, y2)) ...
分类:
其他好文 时间:
2021-04-05 12:41:04
阅读次数:
0
1. x1, y1 = 1.2, 3.57 x2, y2 = 2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1 = {}, y1 = {}'.format(x1, y1)) print('x2 = {}, y2 = {}'.format(x2, y ...
分类:
其他好文 时间:
2021-04-05 12:37:53
阅读次数:
0
task1 x1,y1=1.2,3.57 x2,y2=2.26,8.7 print("{:-^40}".format("输出1")) print("x1={},y1={}".format(x1,y1)) print("x2={},y2={}".format(x2,y2)) print("{:-^40 ...
分类:
其他好文 时间:
2021-04-05 12:32:08
阅读次数:
0
# print输出的几种用法 # 用法1:用于输出单个字符串或单个变量 print('hey, u') # 用法2: 用于输出多个数据项,用逗号分隔 print('hey', ' u') x = 1 y = 2 z = 3 print(x, y, z) # 用法3: 用户混合字符串和变量值 prin ...
分类:
其他好文 时间:
2021-04-05 12:15:12
阅读次数:
0
环境准备 本机安装python3.x , Geany ,ensp 安装实验需要的库 paramiko 交换机1配置sys sys SW1 vlan 10 q int g0/0/1 port link acc port def vlan 10 q user-interface vty 0 4 auth ...
分类:
其他好文 时间:
2021-04-05 12:14:39
阅读次数:
0
task1 print("hey,u")print("hey","u")x=1y=2z=3print(x,y,z)print("x=%d,y=%d,z=%d"%(x,y,z))print("x={},y={},z={}".format(x,y,z))print(f"x={x},y={y},z={z} ...
分类:
其他好文 时间:
2021-04-05 12:13:30
阅读次数:
0