码迷,mamicode.com
首页 >  
搜索关键字:when    ( 7148个结果
python文件处理
一、什么是文件处理?我们知道,程序运行的时候,产生的数据都是存储在内存当中的,但是内存不是永久保存,一旦断电,数据就会消失,要想永久保存数据,我们就需要将数据保存到硬盘,而操作计算机硬件是操作系统干的活儿。所以操作系统为用户和应用程序提供了调用机制,取名为文件。文件本质上就是调用操作系统,从而控制计 ...
分类:编程语言   时间:2021-03-30 12:59:02    阅读次数:0
[LeetCode] 1088. Confusing Number II 易混淆数之二
We can rotate digits by 180 degrees to form new digits. When 0, 1, 6, 8, 9 are rotated 180 degrees, they become 0, 1, 9, 8, 6 respectively. When 2, 3, ...
分类:其他好文   时间:2021-03-30 12:50:16    阅读次数:0
几种排序算法学习总结
一、选择排序 选择排序是一种非常简单而且很直观的排序算法,此排序算法的时间复杂度为O(n²),因此,从时间复杂度来看,需要排序的数据规模越小,效果就越好;它的好处就是在进行排序的过程中不会占用额外的内存空间。 选择排序的基本思想:每一次在n-i+1(i=1,2,3,...,n-1)个记录中选取最小的 ...
分类:编程语言   时间:2021-03-18 14:26:58    阅读次数:0
mysql 分组行号
select id, @group_row:=CASE when @parent_code=a.staff_id then @group_row+1 else 1 end as groupRow, @parent_code:=a.staff_id as parent_code from ss_sta ...
分类:数据库   时间:2021-03-17 14:22:05    阅读次数:0
ResourceExhaustedError: OOResourceExhaustedError: OOM when allocating tensor with shapeM when allocating tensor with shape
原因:是因为gpu显存太小而导致的错误。 解决方法: 1.将batch_size改小 2.不用gpu训练,改用cpu训练 import os os.environ["CUDA_VISIBLE_DEVICES"] = "-1" ...
分类:其他好文   时间:2021-03-16 13:56:03    阅读次数:0
mysql统计各个科目的分数、总分、平均分
SELECT s.id, s.name, max(case when g.kemu='语文' then score else 0 end) as 语文,max(case when g.kemu='数学' then score else 0 end) as 数学,max(case when g.kem ...
分类:数据库   时间:2021-03-15 10:37:49    阅读次数:0
Core Python | 2 - Core Python: Getting Started | 2.6 - Objects and Types | 2.6.4 - Python's Type System
Programming languages can be distinguished by several characteristics, but one of the most important is the nature of their type system. Python could ...
分类:编程语言   时间:2021-03-08 13:34:24    阅读次数:0
1037 Magic Coupon (25 分)
The magic shop in Mars is offering some magic coupons. Each coupon has an integer N printed on it, meaning that when you use this coupon with a produc ...
分类:其他好文   时间:2021-03-06 14:44:48    阅读次数:0
[CSS] Using transform: scale(0) for hiding element
For a radio button control, when hide selected status, we can use: .input__control::before { content: ""; width: 0.5em; height: 0.5em; // box-shadow w ...
分类:Web程序   时间:2021-03-06 14:44:13    阅读次数:0
SQL SERVER 查看所有触发器
https://www.cnblogs.com/guorongtao/p/13329618.html SELECT object_name(a.parent_obj) as [表名] ,a.name as [触发器名称] ,(case when b.is_disabled=0 then '启用' e ...
分类:数据库   时间:2021-03-05 13:01:52    阅读次数:0
7148条   上一页 1 ... 3 4 5 6 7 ... 715 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!