作者:guopengfa

c语言数据类型

guopengfa guopengfa 发布于 2021-08-13

matplotlib笔记

from matplotlib import pyplot as pltfig, axs = plt.subplots(2) # 一个画布有两个子图file_name = 'title'fig.suptitle(file_name) # 设置子图标题axs[0].plot(xs=list_x,

guopengfa guopengfa 发布于 2021-08-13

adb常用命令记录

adb常用命令adb root # 使用root模式运行adbadb remount # 使用remount模式运行adbadb shell # 进入内核linux模式adb pull phone_dir computer_dir # 移动手机内部文件phone_dir到computer_d

guopengfa guopengfa 发布于 2021-08-12

winsows10专业版激活码,可从其他版本升级到专业版

淘宝9购入windows10激活码,现share给大家从未激活到激活10专业:M7WK3-8NP8G-WHXV2-34BHK-WTXHDwin10密钥:激活:1.去【开始——设置——更新——激活】点击更改产品密钥,然后把我发给你的密钥复制粘贴进去:激活成功 【当场带图当场评 价 以后安 装免费送一个

guopengfa guopengfa 发布于 2021-08-06

退出线程

import timefrom threading import Threadimport inspectimport ctypesdef te1(): while True: print('te1') time.sleep(1)def _async_raise(t

guopengfa guopengfa 发布于 2021-08-02

python打包成exe神器--pipenv

#安装pipenvpip install pipenv#建立虚拟环境pipenv install#进入虚拟环境(上一步可省略,因为没有虚拟环境的话会自动建立一个)pipenv shell#安装模块pip install requests pyquery pysimplegui fake_userag

guopengfa guopengfa 发布于 2021-07-22