码迷,mamicode.com
首页 >  
搜索关键字:awk gsub sub split substr    ( 23444个结果
代码;登录,转账,取款,查询余额,更改密码。
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
Redis学习四(发布和订阅)
1. 什么是发布和订阅 Redis 发布订阅 (pub/sub) 是一种消息通信模式:发送者 (pub) 发送消息,订阅者 (sub) 接收消息。 Redis 客户端可以订阅任意数量的频道。 2. redis的订阅与发布 1、客户端可以订阅频道如下图 2、当给这个频道发布消息后,消息就会发送给订阅的 ...
分类:其他好文   时间:2021-06-13 10:35:06    阅读次数:0
Input error: Chromosome xxx found in non-sequential lines. This suggests that the input file is not sorted correctly报错
跑命令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每天给女朋友发送微信信息
使用golang每天给女朋友发送微信信息 我们使用github.com/eatMoreApple/openwechat就可以使用golang操作微信发送消息了 package main import ( "fmt" "github.com/eatMoreApple/openwechat" "time ...
分类:微信   时间:2021-06-11 18:27:23    阅读次数:0
shell脚本退出当前用户
一个新的需求,需要在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
C#将每个单词首字母大写
1. C#将每个单词首字母大写 private static string processing(string str)//处理这段英文的方法 { string[] strArray = str.Split("_".ToCharArray()); string result = string.Emp ...
分类:Windows程序   时间:2021-06-10 17:58:46    阅读次数:0
tcpdump for container
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
Vue textarea文本框换行符处理
传给后端之前先做下替换处理,后端再split就能获取到每行数据,我这里用的是分号进行分隔: this.content.replace(/\n/g,':') ...
分类:其他好文   时间:2021-06-10 17:50:40    阅读次数:0
23444条   上一页 1 ... 3 4 5 6 7 ... 2345 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!