码迷,mamicode.com
首页 >  
搜索关键字:lines    ( 2570个结果
python-->os模块
[TOC] 一、os模块 os模块负责程序与操作系统的交互,提供了访问操作系统底层的接口,多用于文件处理。 | 方法 | 详解 | | : : | : : | | os.getcwd() | 获取当前工作目录,即当前python脚本工作的目录路径 | | os.chdir("dirname") | ...
分类:编程语言   时间:2019-08-23 20:51:55    阅读次数:127
Perl获取匹配行的最后三行
#!/usr/bin/perlopen (file,"D:\\OUTCAR");$a=0;while ($lines=<file>){ if ($lines=~/TOTAL ELASTIC/){ $lines_number=$.; $a=1 } if ($a==1){ sub1() }}close( ...
分类:其他好文   时间:2019-08-22 21:56:58    阅读次数:127
crack|erosion|strip|
V-ERG (使)破裂;(使)裂开;(使)断裂 If something hard cracks, or if you crack it, it becomes slightly damaged, with lines appearing on its surface. A gas main had ...
分类:其他好文   时间:2019-08-20 01:20:37    阅读次数:101
GYM 101061 I. Playing with strings(有待更新)
I. Playing with strings time limit per test 2.0 s memory limit per test 64 MB input standard input output standard output Taboush is a 10 year-old sch... ...
分类:其他好文   时间:2019-08-19 23:16:18    阅读次数:186
用numpy处理大数据遇到的问题
在使用numpy读取一个四百多万行数据的.csv文件时抛出了如下异常: numpy.core._exceptions.MemoryError: Unable to allocate array with shape (4566386, 23) and data type <U20 以下是我的源代码: ...
分类:其他好文   时间:2019-08-17 18:30:49    阅读次数:6862
Chika and Friendly Pairs(莫队+离散化+树状数组)
Chika and Friendly Pairs Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 524288/524288 K (Java/Others)Total Submission(s): 1164 Accepted Submissi ...
分类:编程语言   时间:2019-08-17 18:28:08    阅读次数:122
linux 日志
第一:两个文件的交集,并集前提条件:每个文件中不得有重复行1. 取出两个文件的并集(重复的行只保留一份)2. 取出两个文件的交集(只留下同时存在于两个文件中的文件)3. 删除交集,留下其他的行1. cat file1 file2 | sort | uniq > file32. cat file1 f ...
分类:系统相关   时间:2019-08-17 00:37:25    阅读次数:117
JAVA RDD 介绍
RDD 介绍 RDD,全称Resilient Distributed Datasets(弹性分布式数据集),是Spark最为核心的概念,是Spark对数据的抽象。 RDD是分布式的元素集合,每个RDD只支持读操作,且每个RDD都被分为多个分区存储到集群的不同节点上。除此之外,RDD还允许用户显示的指 ...
分类:编程语言   时间:2019-08-16 23:08:05    阅读次数:148
13、事例十三:光源例子:环绕二次曲面球体的光源(二)
namespace sharpGLTest13 { public partial class Form1 : Form { private float rotation = 0.0f; float m_bReadX, m_bReadY; float m_bGreenX, m_bGreenY; flo... ...
分类:其他好文   时间:2019-08-15 21:04:08    阅读次数:87
线性代数知识荟萃(4)——矩阵相抵
Linear algebra is the branch of mathematics concerning vector spaces and linear mappings between such spaces. It includes the study of lines, planes, ... ...
分类:其他好文   时间:2019-08-15 05:57:11    阅读次数:91
2570条   上一页 1 ... 33 34 35 36 37 ... 257 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!