码迷,mamicode.com
首页 >  
搜索关键字:count and say    ( 19436个结果
intel Excel操作
1 透视图 Insert pivotTable— 如上图,将 序号作为透视图表的行,标记作为列,count of 成绩作为表值: 结果: 第一行第三列种的2表示,在原始数据表中序号为1且标记为c对应的成绩列的单元格有2个(跟成绩的具体指没有关系)。如果将sum of 成绩 作为透视图的表值: 第一行 ...
分类:其他好文   时间:2021-05-24 03:27:36    阅读次数:0
python 协程
import asyncio import time async def say_after(delay, what): """使用 async 声明函数""" await asyncio.sleep(delay) print(what) async def main(): # 一个一个执行 pri ...
分类:编程语言   时间:2021-05-24 02:55:21    阅读次数:0
0906. Super Palindromes (H)
Super Palindromes (H) 题目 Let's say a positive integer is a super-palindrome if it is a palindrome, and it is also the square of a palindrome. Given tw ...
分类:其他好文   时间:2021-05-24 02:27:55    阅读次数:0
一个关于线程安全的示例
public class ThreadDemo { //1.定义一个静态变量,因为静态变量是线程共享的 public static int count = 0; //2.定义一个自增的方法 public static void add() { try { Thread.sleep(1);//让程序睡 ...
分类:编程语言   时间:2021-05-24 02:11:00    阅读次数:0
单表清除重复数据
delete from 表名 a where 列名 in ( select t.列名 from (select 列名 ,count(*) from 表名 where 列名 is not null group by 列名 having count(*) > 1) t ) ...
分类:其他好文   时间:2021-05-24 02:01:44    阅读次数:0
POJ 1005 - I Think I Need a Houseboat
POJ 1005 - I Think I Need a Houseboat Description Fred Mapper is considering purchasing some land in Louisiana to build his house on. In the process o ...
分类:其他好文   时间:2021-05-24 00:42:36    阅读次数:0
git clone 下载时报错: fatal: Out of memory, malloc failed
使用云服务器git clone某个项目时,遇到如下问题: fatal: Out of memory, malloc failed (tried to allocate 2000000000 bytes) 百度后找到如下解决方法: sudo mkdir -p /opt/temp sudo dd if= ...
分类:其他好文   时间:2021-05-24 00:26:08    阅读次数:0
RuntimeError: you must first build vocabulary before training the model
解决RuntimeError: you must first build vocabulary before training the model错误 查找解决方案,意思就是说你的数据集中的数量过少,解决方案有两种,扩大数据集的数量、另一个就是更改min_count的值例如:如果太少的话可以更改为 ...
分类:其他好文   时间:2021-05-23 23:49:16    阅读次数:0
自动 批量 发送工资条 到邮箱
from openpyxl import load_workbook import smtplib from email.mime.text import MIMEText # 邮件正文 from email.header import Header # 邮件头 # 加载excel 文件 wb = ...
分类:其他好文   时间:2021-05-04 16:06:39    阅读次数:0
决策树3:基尼指数--Gini index(CART)
pi表示在信息熵部分中有介绍,如下图中介绍 选择最小的那个0.3 #整个c4.5决策树的所有算法: import numpy as np import operator def creatDataSet(): """ outlook-> 0:sunny | 1:overcast | 2:rain t ...
分类:其他好文   时间:2021-05-03 12:13:28    阅读次数:0
19436条   上一页 1 ... 8 9 10 11 12 ... 1944 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!