flag = Trued = {}with open('b.txt', mode='rt', encoding='utf-8') as f: res = f.readlines() for line in res: i = line.strip('\n').split(':') d[i[0]] = ...
分类:
其他好文 时间:
2021-06-15 17:54:21
阅读次数:
0
d = {}with open('b.txt', mode='rt', encoding='utf-8') as f: res = f.readlines() for line in res: i = line.strip('\n').split(':') d[i[0]] = i[1]while T ...
分类:
其他好文 时间:
2021-06-15 17:52:42
阅读次数:
0
MATLAB实验 部分代码 x=[0,0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1];y=[-0.447,1.978,3.28,6.16,7.08,7.34,7.66,9.56,9.48,9.30,11.2];for n=1:9 f=polyfit(x,y,n); fo ...
分类:
其他好文 时间:
2021-06-15 17:40:41
阅读次数:
0
1. 什么是发布和订阅 Redis 发布订阅 (pub/sub) 是一种消息通信模式:发送者 (pub) 发送消息,订阅者 (sub) 接收消息。 Redis 客户端可以订阅任意数量的频道。 2. redis的订阅与发布 1、客户端可以订阅频道如下图 2、当给这个频道发布消息后,消息就会发送给订阅的 ...
分类:
其他好文 时间:
2021-06-13 10:35:06
阅读次数:
0
跑命令bedtools genomecov -ibam file.bam -bga -split -trackline > file.wig时出现的报错。 解决方案: samtools sort file.bam -T /tmep -o file.sorted.bam #/tmep指的是新建一个tm ...
分类:
其他好文 时间:
2021-06-13 09:43:05
阅读次数:
0
使用golang每天给女朋友发送微信信息 我们使用github.com/eatMoreApple/openwechat就可以使用golang操作微信发送消息了 package main import ( "fmt" "github.com/eatMoreApple/openwechat" "time ...
分类:
微信 时间:
2021-06-11 18:27:23
阅读次数:
0
一个新的需求,需要在shell脚本中退出当前登录用户 方式一 #!/bin/bash I=$(tty |awk -F '/dev/' '{print $2}') pkill -kill -t $I 方式二 #!/bin/bash I=$(who am i|awk '{print $2}') pkil ...
分类:
系统相关 时间:
2021-06-11 17:45:51
阅读次数:
0
1. C#将每个单词首字母大写 private static string processing(string str)//处理这段英文的方法 { string[] strArray = str.Split("_".ToCharArray()); string result = string.Emp ...
kubectl -n kube-system exec -it $pod -- ovs-vsctl list-ports br-int ovnip=`ip a | grep "scope global ovn4nfv0" |awk '{match($0, /.+inet\s([^ /]*)/, a) ...
分类:
其他好文 时间:
2021-06-10 17:55:40
阅读次数:
0
传给后端之前先做下替换处理,后端再split就能获取到每行数据,我这里用的是分号进行分隔: this.content.replace(/\n/g,':') ...
分类:
其他好文 时间:
2021-06-10 17:50:40
阅读次数:
0