摘要: num_list = []for i in range(1,16): if i == 13: continue else: num_list.append(str(i))str_num = ' '.join(num_list) 阅读全文
posted @ 2022-08-31 00:17 遇事不决,量子力学 阅读(60) 评论(0) 推荐(0) 编辑
摘要: list_a = [1, 2, 3] list_d = [i for i in list_a]#[1, 2, 3] list_e = [i*j for i in list_a for j in list_c]#[4,5,6,10,12,12,15,18] list_f = [i*j for i,j 阅读全文
posted @ 2022-08-30 16:49 遇事不决,量子力学 阅读(30) 评论(0) 推荐(0) 编辑
摘要: python中保留n位小数,可以使用round 函数 a = 34.564636856845754print(round(a, 2))print(round(a, 3)) 阅读全文
posted @ 2022-08-30 16:01 遇事不决,量子力学 阅读(345) 评论(0) 推荐(0) 编辑
摘要: from django.test import TestCase# Create your tests here.class A: def __init__(self): self.a = "a" print("A")class B: def __init__(self): self.b = "b" 阅读全文
posted @ 2022-08-30 15:50 遇事不决,量子力学 阅读(28) 评论(0) 推荐(0) 编辑
摘要: num_list = [1,2,3,4] num_list[0],num_list[2] = num_list[2],num_list[0]num_list[1],num_list[3] = num_list[3],num_list[1] print(num_list) 阅读全文
posted @ 2022-07-30 17:26 遇事不决,量子力学 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 1、模拟延迟传输 tc qdisc add dev eth0 root netem delay 100ms 该命令将 eth0 网卡的传输设置为延迟100毫秒发送。 更真实的情况下,延迟值不会这么精确,会有一定的波动,我们可以用下面的情况来模拟出带有波动性的延迟值: tc qdisc add dev 阅读全文
posted @ 2022-07-25 07:08 遇事不决,量子力学 阅读(1211) 评论(0) 推荐(0) 编辑
摘要: 如何使用工具构造弱网环境 来自:https://blog.csdn.net/IT_LanTian/article/details/123636 阅读全文
posted @ 2022-07-25 07:06 遇事不决,量子力学 阅读(42) 评论(0) 推荐(0) 编辑
摘要: import xlrdimport xlwt"""获取文件对象"""data = xlrd.open_workbook('pyt.xls')#通过index获取第一个sheet"""读文件,获取sheet对象"""table = data.sheets()[0]#获取所有sheettable_nam 阅读全文
posted @ 2022-07-24 17:30 遇事不决,量子力学 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 如建立conf_fat.yml文件,内容: host: doname: demo.pab.com.cn port : 80 创建py_yaml.py文件,内容: import yamlwith open("conf_fat.yml", "r") as file: content = file.rea 阅读全文
posted @ 2022-07-24 00:41 遇事不决,量子力学 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 例如给定一个列表a,用冒泡排序法,将a里面的元素从小到大进行排序 实现思想: 1.确定列表表长(元素个数),用于确定最多循环次数,为len(list)长度 2.确定列表内第一次循环,第一个元素的最多比较次数,为len(list) -1 - i,i为循环次数变量 3.设置排序标记位,sort_sign 阅读全文
posted @ 2022-07-23 01:47 遇事不决,量子力学 阅读(396) 评论(0) 推荐(0) 编辑