码迷,mamicode.com
首页 >  
搜索关键字:feel good    ( 2091个结果
编写第一个python程序(Your Firsr Program)
1)代码如下: 1 1 # This program says hello and asks for my name. 2 2 myName = input("What is your name?") 3 3 print('it is good to meet you,'+myName) #ask ...
分类:编程语言   时间:2019-12-18 14:33:25    阅读次数:59
2019年12月17日
1.使用批量新增和批量修改 java接口: //批量新增 int batchInsertGoods(List<Goods> list); //批量修改 int batchUpdateGoodsByIds(List<Map<String, Object>> list); //根据ids批量获取Good ...
分类:其他好文   时间:2019-12-17 22:38:56    阅读次数:118
where和having区别
壹: where后面不能跟聚合函数(sum、avg、count、max、min) having后面可以跟 贰: where和having都能用: select goods_price,goods_name from sw_goods where goods_price>100 select good ...
分类:其他好文   时间:2019-12-15 21:39:37    阅读次数:83
WOE(证据权重)为何这样计算?
更多大数据分析、建模等内容请关注公众号《bigdatamodeling》 先简单回顾一下WOE的含义。假设x是类别变量或分箱处理过的连续变量,含R个类别或分段,取值为{C1, ..., Cr, ..., CR};y是目标变量,取值为0(Good)或1(Bad)。x和y的频数表如下: 1、概念回顾 先 ...
分类:其他好文   时间:2019-12-15 18:40:26    阅读次数:315
montagy
因为只是想分享ghcjs和webgl的使用经验,所以很多地方说的很粗,因为涉及的知识确实很多, 推荐两本书,一本haskell基础的 learn you a haskell for great good,中文翻译为haskell趣学, 网上有在线版.一本webgl入门的 webgl programm... ...
分类:其他好文   时间:2019-12-13 00:25:25    阅读次数:157
AI - Batch Normalization
Batch Normalization Strong effective or good point Theory of BN ...
分类:其他好文   时间:2019-12-09 19:08:59    阅读次数:71
装饰器&偏函数与作用域与异常处理与文件读写
装饰器 概念:是一个闭包,把一个函数当做参数返回一个替代版的函数,本质上就是一个返回函数的函数 简单的装饰器 def func1(): print("sunck is a good man") def outer(func): def inner(): print("*** ** * * ***") ...
分类:其他好文   时间:2019-12-07 12:26:58    阅读次数:67
字符串和While循环
字符串是以单引号或双引号括起来的任意文本 创建字符串 str1 = "shaoge is a good man!" 字符串运算 字符串连接 str6 = "shaoge is a" str7 = "good man" str8 = str7 +str6 输出重复字符串 str9 = "good" s ...
分类:其他好文   时间:2019-12-07 12:13:20    阅读次数:282
CodeForces - 1238D(思维)
题意 https://vjudge.net/problem/CodeForces-1238D 如果一个字符串的每个字母,属于至少一个(长度大于1)的回文串,则称这个字符串为good。 一个长度为n的字符串s(只由字母A,B组成),问s的子串中有多少个good字符串 思路 发现只有XYX这种交错的串或 ...
分类:其他好文   时间:2019-12-04 01:50:00    阅读次数:92
python-文件的操作
python-文件的操作 一、文件操作的流程 python文件的操作流程如下: 例子: 现有如下一个文件my-hear Every night in my dreams 在梦中的每个夜晚 I see you,I feel you 我看见你,我感觉到你 That is how I know you g ...
分类:编程语言   时间:2019-11-27 00:45:07    阅读次数:79
2091条   上一页 1 ... 12 13 14 15 16 ... 210 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!