码迷,mamicode.com
首页 >  
搜索关键字:column color extjs    ( 188124个结果
1822. Sign of the Product of an Array
There is a function signFunc(x) that returns: 1 if x is positive. -1 if x is negative. 0 if x is equal to 0. You are given an integer array nums. Let  ...
分类:其他好文   时间:2021-05-23 23:06:06    阅读次数:0
openpyl 设置单元格格式
1、设置超链接 # 设置超链接 sheet.cell(2,2).hyperlink = "www.baidu.com" 2.cell的其它属性 # cell 的其它属性 sheet.cell(row = 1,column = 2).column_letter sheet.cell(row = 1,c ...
分类:其他好文   时间:2021-05-23 22:55:32    阅读次数:0
Java8之Optional
/* Optional 容器类常用方法 Optional.of(T t) 创建一个Optional实例 Optional.empty() 创建一个空的Optional实例 Optional.ofNullable(T t) 若t不为null,则创建Optional实例,否则创建空实例 isPresen ...
分类:编程语言   时间:2021-05-04 16:30:31    阅读次数:0
jreg视频内容整理
5种变得开心的方法 浪费时间,比如打游戏,什么都不干 停止思考,什么都不要想,刷视频 独处,不要跟别人分享你的痛苦,把自己的痛苦当作世界上最没有意义的事情 网上冲浪 列出痛苦清单,倾吐问题 我(曾经)想死 说不出口 坏主意,雇主想要正能量的阳光男孩 视频中的演讲者是演员,在扮演角色,可能在说谎话 还 ...
分类:其他好文   时间:2021-05-04 16:28:05    阅读次数:0
Python----闭包和装饰器
# 闭包 def outer(x): print('outer:',x) def inner(): print('inner:', x) return inner # 外部函数return的一定是内部函数的函数名 def a(x): print('a:',x) def b(y): print('b: ...
分类:编程语言   时间:2021-05-04 16:12:49    阅读次数:0
Pandas-02-DataFrame运算
1. 算术运算 add(other) 比如进行数学运算加上一个具体数字 data["open"].add(10) # open列加10 # data["open"] + 10 # 一般不这么写 sub(other) 用法同add 2. 逻辑运算 2.1. 逻辑运算符号 逻辑运算类型:>, >=, < ...
分类:其他好文   时间:2021-05-04 16:04:10    阅读次数:0
tensorflow(三十七):卷积神经网络——CIFAR100与VGG实战
一、网络结构 二、代码 import os os.environ['TF_CPP_MIN_LOG_LEVEL']='2' import tensorflow as tf from tensorflow.keras import layers, optimizers, datasets, Sequen ...
分类:其他好文   时间:2021-05-04 15:53:44    阅读次数:0
python中字符串拼接的三种方法。
python中字符串拼接的三种方法。 1、加号拼接 >>> a = "abcd" >>> b = "xyzm" >>> a 'abcd' >>> b 'xyzm' >>> a + b 'abcdxyzm' 2、join拼接 >>> c = ["abcd","xyzm"] >>> c ['abcd', ...
分类:编程语言   时间:2021-05-04 15:30:09    阅读次数:0
c语言 5-12
1、 #include <stdio.h> int main(void) { int i, j, k, a[2][4][3], b[4][3] = {}; for(i = 0; i < 2; i++) { for(j = 0; j < 4; j++) { for(k = 0; k < 3; k++) ...
分类:编程语言   时间:2021-05-03 13:01:48    阅读次数:0
美团Leaf snowflake模式详解
雪花算法概述 雪花算法简单来说是这样一个长整形数值。它64位,8个字节,刚好一个long。(为什么雪花算法ID是64位? 大概也是这个原因吧。理论上当然可以使用更多位,但是其实不是很有必要) 雪花算法,在单个节点上是有序的,如同 号段模式,但它也不是 全局严格有序,而是单个节点严格递增。 雪花算法的 ...
分类:其他好文   时间:2021-05-03 12:53:11    阅读次数:0
188124条   上一页 1 ... 33 34 35 36 37 ... 18813 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!