自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 python 两个npy档案合并

old_record=numpy.load('exist.npy') temp_record=[] path = os.getcwd()+"\\database\\new" #获取当前路径 for root,dirs,files in os.walk(path): #遍历统计 for each in files: url=path+"\\"+each ... t...

2018-10-17 14:53:19 4077 2

原创 最简单的带参数python函数

import sys def print_something(mes): print(mes) if __name__ == '__main__': if len(sys.argv) != 2: print('missing argv') exit(1) print_something(sys.argv[1]) 如何使用?假设上面存为文档...

2018-10-14 21:49:44 250

原创 python 定义一个类

#以下定义了一个类,类名为Person_info,里面有两个参数,分别是name和age class Person_info: def __init__(self,name,age): self.name=name self.age=age #以下是使用说明 temp=Person_info(kk,5); print(temp.name) print...

2018-10-14 16:44:37 9669

原创 python 计算程序运行的时间

import time start = time.clock() #开始计时 #一大堆程序 elapsed = (time.clock() - start) #结束计时 print("running time:"+str(elapsed)+"s") #印出时间  

2018-10-14 16:41:18 1154

原创 python 保存、读取数据

ori=[] numpy.save('ori.npy',ori) #保存数据 load_data= numpy.load('ori.npy') #读取数据  

2018-10-14 16:39:09 269

原创 python 重命名文件

def rename_img(path) start = time.clock()#计算程序开始执行 count=0 for root,dirs,files in os.walk(path): #遍历统计 for each in files: url=path+"\\"+each; #原文件的路径+文件名(绝对路径) ...

2018-10-14 16:36:21 1184 4

原创 k-means 二维,C++实现

// k_means.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include "pch.h" #include <iostream> #include <vector> #include <string> #include <fstream> #include <sstream> u

2018-10-06 23:15:44 371 3

原创 K-means 一维 C++

// k_means.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include "pch.h" #include <iostream> #include <vector> #include <string> using namespace std; int main() { cout << "请输入

2018-10-05 20:20:54 640

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除