排序
Python json模块
JSON 的全称是 JavaScript Object Notation,即 JavaScript 对象符号,它是一种轻量级、跨平台、跨语言的数据交换格式, json 模块提供了对 JSON 的支持,它既包含了将 JSON 字符串恢复成 Pytho...
Python str / bytes / unicode 区别详解
Python str / bytes / unicode 区别详解 - 在讲解 str / bytes / unicode 区别之前首先要明白字节和字符的区别,请参考:bytearray/bytes/string区别 中对字节和字符有清晰的讲解,最重要是明白...
Python type函数
Python 变量,也称 Python 数据类型。Python 变量一共六种类型:整数/浮点数/字符串/BOOL/列表/元组/字典;我们已经学习完了两个Python 内置函数,分别是 print 函数和format函数,今天需要额外...
Visual Studio 2019 代码注释快捷键
Visual Studio 2019 代码注释快捷键-1、选中需要注释的代码 2、CTRL + K + C //注释 3、CTRL + K + U //取消注释 1.安装 Visual Studio 2.安装 Visual Studio 插件 Visual Assist 3.Visual Stud...
IOS OpenGL ES GPUImage 图像溶解 GPUImageDissolveBlendFilter
GPUImage - GPUImageDissolveBlendFilter- GPUImage 共 125 个滤镜, 分为四类 1、Color adjustments : 31 filters , 颜色处理相关 2、Image processing : 40 filters , 图像处理相关. 3、Blendi...
Python 线程障碍对象 Barrier
Python 线程障碍对象 Barrier - Python 线程 Barrier 俗称障碍对象,也称栅栏,也叫屏障。 与之前介绍 互斥锁 Lock / 事件 Event / 定时器 Timer 等不同,多线程 Barrier 会设置一个线程障碍数...
Python divmod函数
divmod 函数也是 Python 的内置函数,它是把除数和余数运算结果结合起来,返回一个包含商和余数的元组 tuple (a // b, a % b); 注意:divmod 函数只能接受整数 int 或浮点数类型 float 参数不能...
AVFoundation – AVVideoCompositionInstruction AVMutableVideoCompositionInstruction 操作指令
AVFoundation – AVVideoCompositionInstruction AVMutableVideoCompositionInstruction 操作指令 - AVVideoCompositionInstruction 继承自 NSObject ,封装了一组操作指令,由 AVVideoCompositi...

















