自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (4)
  • 收藏
  • 关注

原创 read excel files with python and xlrd

#coding=utf-8#!/usr/bin/pythonimport xlrddata = xlrd.open_workbook('160321.xls')table = data.sheets()[0]a=table.col_values(3)print(a[1])print(a[2])b=float(a[1])+float(a[2])print(b)print(tab

2016-03-28 07:44:45 372

原创 extract things from excel files.

#coding=utf-8#!/usr/bin/pythonimport osfrom glob import globimport reimport xlrdfo = open("foo.csv", "a+") def isDigit(my_str): try: float(my_str) except ValueError:

2016-03-28 07:43:14 333

原创 extract things from text files

#coding=utf-8#!/usr/bin/pythonimport osfrom glob import globimport refo = open("foo.csv", "a+")    def isDigit(my_str):    try:        float(my_str)    except ValueError:   

2016-03-27 11:32:39 279

原创 python简单浮点数匹配

>>> import re>>> m=re.findall('\d+\.\d+','-A213330.00-0.13')>>> m['213330.00', '0.13']>>> len(m)2>>> m=re.findall('[-]\d+\.\d+','-A213330.00-0.13')>>> m['-0.13']>>> m=re.findall('[-]

2016-03-27 09:15:37 4346

原创 looking for thunder link

#! encoding=gbkimport refile_object = open('1.txt')f = open("2.txt","w")for line in file_object: m = re.findall('(thunder(.+)pa)',line) if m: print >> f,m[0][0];f.close()file_

2016-03-26 21:25:13 1143

入门pwn题目ret2text

入门pwn题目ret2text

2023-03-26

Scratch Games Scratch游戏.zip

游戏列表见https://blog.csdn.net/llrraa2010/article/details/113805860

2021-02-14

TensorFlow:图像视频物体识别API例程用到的tutorial1

tutorial参考:http://blog.csdn.net/llrraa2010/article/details/79361291

2018-02-25

TensorFlow:Object_Detection_API图像视频物体识别API例程用到的model

TensorFlow:Object_Detection_API图像视频物体识别API例程用到的model,试过下载不了,放在这里以防万一。tutorial参考:http://blog.csdn.net/llrraa2010/article/details/79361291

2018-02-25

TensorFlow:Object_Detection_API图像视频物体识别API例程用到的tutorial

tutorial参考:http://blog.csdn.net/llrraa2010/article/details/79361291

2018-02-25

空空如也

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

TA关注的人

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