乐观大山

文章
6
资源
0
加入时间
3年0月20天

SDN基本概述 --- 流表

流表https://blog.csdn.net/weixin_41738417/article/details/90442035SDN基本概述https://blog.csdn.net/qq_38265137/article/details/80503546Openflow协议详解https://www.cnblogs.com/liuhongru/p/10120125.html...

python循环和分支的互相嵌套

一、循环内嵌套if本质就是:只要是代码,都能放在代码块的位置案例: # 打印1-100之间,所有3的倍数num = range(1, 101)for c in num: if c % 3 == 0: print(c)# 用while实现a = 1while a <= 100: if a % 3 == 0: print(a) a ...