2023年6月7日

SecureCRT主题颜色样式

摘要: 步骤:保存以下代码为新文件(colorful.ini),放到目录C:\Users\ThinkPad\AppData\Roaming\VanDyke\Config\keywords下,SecureCRT配置Options-Global Options-Default Session-Edit Defa 阅读全文

posted @ 2023-06-07 15:25 winecork 阅读(265) 评论(0) 推荐(0) 编辑

2021年12月29日

win10家庭版激活administrator

摘要: net user administrator /active:no 阅读全文

posted @ 2021-12-29 09:51 winecork 阅读(29) 评论(0) 推荐(0) 编辑

2021年11月18日

secureCRT配色方案

摘要: 修改背景色 Options-->Global Options-->Default Session-->Edit Defaul Settings...-->Appearance-->ANSI Color-->Color-->H,S,L(128,240,25) color_network.ini D:" 阅读全文

posted @ 2021-11-18 16:52 winecork 阅读(444) 评论(0) 推荐(0) 编辑

2021年3月14日

查看wifi密码

摘要: netsh wlan show profiles wlan show profiles WifiName key=clear 阅读全文

posted @ 2021-03-14 13:55 winecork 阅读(58) 评论(0) 推荐(0) 编辑

自动保存图表

摘要: import matplotlib.pyplot as plt x_values = range(1,1001) y_values = [x ** 2 for x in x_values] fig,ax = plt.subplots() ax.scatter(x_values,y_values,s= 阅读全文

posted @ 2021-03-14 00:08 winecork 阅读(65) 评论(0) 推荐(0) 编辑

自定义颜色

摘要: 自定义颜色 import matplotlib.pyplot as plt x_values = range(1,1001) y_values = [x ** 2 for x in x_values] fig,ax = plt.subplots() ax.scatter(x_values,y_val 阅读全文

posted @ 2021-03-14 00:05 winecork 阅读(115) 评论(0) 推荐(0) 编辑

自动计算数据

摘要: import matplotlib.pyplot as plt x_values = range(1,1001) y_values = [x ** 2 for x in x_values] fig,ax = plt.subplots() ax.scatter(x_values,y_values,s= 阅读全文

posted @ 2021-03-14 00:00 winecork 阅读(27) 评论(0) 推荐(0) 编辑

2021年3月13日

scatter()绘制一些列点

摘要: import matplotlib.pyplot as pltx_values = [1,2,3,4,5]y_values = [1,4,9,16,25] # y_values = [x ** 1 for x in x_values]fig,ax = plt.subplots() ax.scatte 阅读全文

posted @ 2021-03-13 23:54 winecork 阅读(61) 评论(0) 推荐(0) 编辑

用scatter()绘制散点图

摘要: import matplotlib.pyplot as plt fig,ax = plt.subplots() ax.scatter(2,4) plt.show() 阅读全文

posted @ 2021-03-13 23:51 winecork 阅读(81) 评论(0) 推荐(0) 编辑

使用内置款式

摘要: import matplotlib.pyplot as plt input_values = [1,2,3,4,5] squares = [1,4,9,16,25] plt.style.use('ggplot') # 绘制图表时使用款式ggplot fig,ax = plt.subplots() a 阅读全文

posted @ 2021-03-13 23:34 winecork 阅读(45) 评论(0) 推荐(0) 编辑

导航