-
打开一个文件,将不对齐的源代码进行对齐缩进等操作,相当于格式化字符串...
打开一个文件,将不对齐的源代码进行对齐缩进等操作,相当于格式化字符串-Open a file, will not be aligned source code indentation, such as alignment operation, the equivalent of formatted string
- 2022-10-05 20:10:03下载
- 积分:1
-
我自己做的可以管理自己的电脑文件更新的小软件,非常简单VB+ACCE...
我自己做的可以管理自己的电脑文件更新的小软件,非常简单VB+ACCE-I can do to manage their computer files updated software small, very simple VB ACCE
- 2022-01-21 22:50:05下载
- 积分:1
-
通过MFC编制的可以阅读Adobe(pdf)文件的程序插见,是学习文件操作的良好例子....
通过MFC编制的可以阅读Adobe(pdf)文件的程序插见,是学习文件操作的良好例子.-compiled by MFC can read Adobe (pdf) documents, see the interpolation procedures, the operation is to study the documents are good examples.
- 2023-08-17 23:35:03下载
- 积分:1
-
两岸通
两岸通--简繁字互转源代码 --strait-- 66.248.97.196 source code word referrals
- 2022-10-14 12:20:02下载
- 积分:1
-
windows下面API的文件复制工具,基于命令行。
windows下面API的文件复制工具,基于命令行。-windows file copy API, the following tools, based on the command line.
- 2022-04-16 11:16:11下载
- 积分:1
-
Fortran2003 功能的示例
示例面向对象编程使用 Fortran 2003 新增功能:类型扩展和继承、 多态性、 动态类型分配类型绑定过程
- 2022-03-14 22:48:34下载
- 积分:1
-
是一个用JAVA写的能让你的JAVA程序读如EXCEL文件的类,很好用的,只要调用这个类,就可以解决JAVA本身没有读写EXCEL文件的难题!...
是一个用JAVA写的能让你的JAVA程序读如EXCEL文件的类,很好用的,只要调用这个类,就可以解决JAVA本身没有读写EXCEL文件的难题!-Java is used to write one of you can read the Java procedures such as Excel document categories, the good, as long as the category called on the Java itself can be solved without literacy problems Excel documents!
- 2022-04-15 03:35:50下载
- 积分:1
-
email VC.NET source code, I use a very good shape;
发送电子邮件VC++.NET实现源码,本人用了,挺好的-email VC.NET source code, I use a very good shape;
- 2022-05-17 07:18:37下载
- 积分:1
-
JAVABEAN with a written document upload system is very practical, we can take th...
一个用JAVABEAN写的文件上传系统 非常实用,大家可以借此参考一下-JAVABEAN with a written document upload system is very practical, we can take this reference
- 2023-03-27 21:00:04下载
- 积分:1
-
原始数据划分为train.dat和test.dat
应用背景开始是做movielense的数据,可以把原始数据任意划分为train.dat和test.dat,主要是为了做验证实验。非常简单明了,适合初学者看看,如果不喜欢,请轻喷。关键技术# -*- coding: cp936 -*-
from sklearn import cross_validation
c = []
filename = r"Raw.data" #原始数据
out_train = open(r"train.txt","w") #训练集
out_test = open(r"test.txt","w") #测试集
for line in open(filename):
items = line.strip().split(",")
c.append(items)
c_train,c_test = cross_validation.train_test_split(c,test_size=0.1)#size =你需要的比例
for i in c_train:
out_train.write(",".join(i)+"
")
for i in c_test:
out_test.write(",".join(i)+"
")
- 2022-01-25 21:21:56下载
- 积分:1