码迷,mamicode.com
首页 >  
搜索关键字:python type    ( 184368个结果
c++ 可变参数的打包到tuple,使用tuple传递参数
直接上代码 void Add(int a, double b, short c, const char * f) { std::cout << f << a << ", " << b << ", " << c << ";\n"; } void *p = nullptr; template <type ...
分类:编程语言   时间:2021-06-04 19:35:50    阅读次数:0
Linux - last 命令(Mac 电脑)
前言 为啥写这篇? 因为听 grep、sed 教程的时候有这个命令栗子 加上工作中,运维给我排查问题的时候也用到了,感觉挺重要,先了解为敬! 命令作用 显示用户和TTY的最后登录次数 啥是 TTY 终端(Terminal) =TTY 语法格式 last [-n] [-h host] [-t tty] ...
分类:系统相关   时间:2021-06-04 19:33:37    阅读次数:0
python使用opencv调用摄像头操作
转自: Python3使用opencv调用摄像头录制高清视频 教你如何利用python调用摄像头 #pip3 install opencv-python import cv2 from datetime import datetime FILENAME = 'myvideo.avi' WIDTH = ...
分类:编程语言   时间:2021-06-04 19:24:42    阅读次数:0
Airtest IDE 自动化测试18 - 设置自定义 Python.exe 路径
前言 Airtest IDE 自带了python3 的运行环境,但不方便扩展,如果我们想安装其他第三方依赖包,可以在本地python3 环境pip安装。 在 IDE 设置运行本地python3 环境。 设置 Airtest 选项-设置-Airtest 自定义 Launcher 文件路径,这个默认一般 ...
分类:编程语言   时间:2021-06-04 19:15:03    阅读次数:0
垂直水平居中div
// html <div id="bg_img"> <div> <input type="text" /> </div> </div> // css #bg_img{ display: grid; place-items: center; } ...
分类:其他好文   时间:2021-06-04 19:14:30    阅读次数:0
修改 input 光标颜色
<input id="input" type="text" /> input { caret-color: red; } ...
分类:其他好文   时间:2021-06-04 19:13:12    阅读次数:0
IOS应用砸壳之frida-ios-dump
frida-ios-dump基于frida提供的强大功能通过注入js实现内存dump然后通过python自动拷贝到电脑生成ipa文件。 ...
分类:移动开发   时间:2021-06-04 19:11:07    阅读次数:0
20210604# python 将webp格式转为png
convertImage.py # 功能 : 将当前工作目录下所有webp格式转为png or jpg # -*- coding: UTF-8 -*- import os from PIL import Image # 返回当前工作目录 CURRENT_PATH = os.getcwd() # 转换 ...
分类:编程语言   时间:2021-06-04 19:06:58    阅读次数:0
解决pyintstaller 打包后程序报错 api-ms-win-core-path-l1-1-0.dll文件
一、错误现象 1、api-ms-win-core-path-l1-1-0.dll错误日志如下: 2、重新打包查看有如下的警告信息: 二、解决方案: 1、网上下载:api-ms-win-core-path-l1-1-0.dll ,可选择6.2.9200.16384 2、将文件放入python根目录与系 ...
分类:Windows程序   时间:2021-06-04 19:06:35    阅读次数:0
GORM如何获取查询对象的属性
package main import ( "fmt" "gorm.io/driver/mysql" "gorm.io/gorm" "time" ) type User struct { ID int Name string CreatedTime time.Time } func main() { ...
分类:其他好文   时间:2021-06-04 19:06:12    阅读次数:0
184368条   上一页 1 ... 53 54 55 56 57 ... 18437 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!