
breakpad记述:Windows下静态库的编译使用
拉代码 开启VPN 用cmd设置 git config --global --unset http.proxy git config --global --unset https.proxy git config -...
拉代码 开启VPN 用cmd设置 git config --global --unset http.proxy git config --global --unset https.proxy git config -...
概述 Pybind11是一个用于将C++代码与Python绑定的轻量级头文件库,使得可以轻松地在Python中调用C++函数和类 还可以让C++代码调用Python的功能和库 理解 可以把Pybind11理解为一个中...
概述 从网站爬取地震信息 把爬取到的数据做相应处理 把处理好的数据绘制生成html 准备工作 准备数据 当前实现是从一个现有的xlsx文件(爬好的数据)里读取数据 该文件会放在代码同级目录下 def GetDatas...
类型相关 类型 int float bool string NoneType type() 类型转换 int() float() str() 操作 i+j i-j i*j i/j i//j 整除 i%j i**j 幂...
类 基础 class Dog(): """test""" def __init__(self, name, age): """...
语法 条件控制 if 返回True或False。 // 条件判断 for car in cars: if car == 'bmw': print("bmw") else: pr...
版本 python2 python3 // 命令行里面 python python3 环境 控制台 安装好python并设置好相关环境变量后,可以在控制台里面启动python. 运行相关python文件时,需要在这里...