- 博客(6)
- 收藏
- 关注
原创 Linux查询包括x字段,同时不包括y字段的文件(或者包括x同时包括y)
有两种写法 各有优劣grep -i -l 'x' -r /home/test |xargs grep -iv 'y' | grep -L '\.git:'| grep -iv '\.pack:'|grep -iv '\.map:' | /usr/bin/nkf | tee ~/srcGrepResult.123>grep -i -L 'y' -r /home/test |xargs grep -ie 'x' | grep -iv '\.git:'| grep -iv '\.pack:'|grep
2021-09-17 10:22:47 486
原创 Python通过列表模拟指针
众所周知Python是没有指针的,但是我们可以通过列表来模拟指针的存储内存效果def printList(L): print(L)def makeList(): L = [0] S = L S[0] = 1 printList(L) print(L)if __name__ == "__main__": makeList()很简单的效果,先定义一个列表L,里面只有一个常量0将列表L赋值给S改变列表S的第一个变量的值为1此时输出列表L
2021-09-09 09:59:14 535
原创 python GUI相关的一些随笔(tkinter下拉列表,以及下拉列表选中时的动作)
# 生成下拉列表 def makeList(self): comValue = tkinter.StringVar() self.searchWay = Combobox(master=self.init_window_name, textvariable=comValue, height=2, width=10, state="readonly") self.searchWay["v
2021-09-08 13:21:05 797
原创 python GUI相关的一些随笔(tkinter弹出选择文件窗口)
虽然我不喜欢前端设计(,但是闲着没事自己研究东西的时候也会学到很多相关的GUI设计,在这做个备忘笔记通过操作界面导入文件的操作:from tkinter import Tk, filedialogdef guiStart(): init_window = Tk() # 实例化出一个父窗口 ZMJ_PORTAL = Gui(init_window) ZMJ_PORTAL.set_init_window() init_window.mainloop() # 父窗口进入事
2021-09-03 15:14:05 794
原创 python GUI中图表的相关笔记(随时更新)
一个基础图表的生成import matplotlib.pyplot as pltfig = plt.figure()plt.rcParams['font.sans-serif'] = ['SimHei'] # 用来正常显示中文标签plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号x1 = list(All.keys())y1 = list(All.values()) # 通过list来生成图表# plt.subplot(111.
2021-08-13 09:31:12 261
原创 远程执行互相关联的comment时需要对返回值进行空调用
目的通过python,使用秘钥,以SSH方式连接Linux服务器,并执行服务器上的shell脚本代码from time import sleepimport paramikossh = paramiko.SSHClient() # 创建SSH对象def conSub(): # 连接sub 稼动shell command = "cd /tmp;srcGrep.sh -key '*****' /tmp/AB" ssh.set_missing_host_key_policy(p..
2021-08-11 13:31:55 74
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人