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) 编辑

导航