#!/usr/bin/python import threading import json import time from elasticsearch import Elasticsearch from elasticsearch import helpers import os import sys import argparse host_list = [ {"host":"1.58.55.11","port":9200}, {"…
需求 read some .txt file in dir and find min and max num in file. solution: echo *.txt > file.name in linux shell >>>execfile("mytest.py"); //equivalent to run mytest.m in matlab import os fileobj = open("./test2images/2d_xxx.name…
作为Java程序员,Java自然是最主要的编程语言.但是Java适合完成大型项目,对于平时工作中小的工作任务,需要快速完成,易于修改和调试,使用Java显得很繁琐,需要进行类的设计,打成jar包,出现bug,需要重新修改打包.这就需要一门快速开发,方便运行调试的语言.python作为一门脚本语言,可以实现快速编写和快速调试等特性,很适合用于解决日常工作中小的工作任务.一般使用结构化的编程思路,按照流程一步一步的完成各个函数,就能快速的完成工作任务. 例如: excel中有图片是很常见的,但是通过…
(1) 读取单个sheetname的内容. 此部分转自:https://www.cnblogs.com/xxiong1031/p/7069006.html python读取excel中单元格的内容返回的有5种类型,即上面例子中的ctype: ctype: 0   empty 1   string 2   number 3   date 4   boolean 5   Error # coding=utf-8 import xlrd import sys reload(sys) sys.setde…
Python读取文件中的字符串已经是unicode编码,如:\u53eb\u6211,需要转换成中文时有两种方式 1.使用eval: eval("u"+"\'"+unicodestr+"\'") 2.使用decode: str1 = '\u4f60\u597d' print str1.decode('unicode_escape') 你好 unicodestr.decode('unicode_escape')  # 将转义字符\u读取出来 # ’…
""" 功能:将Excel数据导入到MySQL数据库 """ import xlrd import MySQLdb # Open the workbook and define the worksheet book = xlrd.open_workbook("pytest.xls") sheet = book.sheet_by_name("source") #建立一个MySQL连接 database = M…
错误信息:UnicodeEncodeError: 'latin-1' codec can't encode character '\u5c0f' in position 31: Body ('小') is not valid Latin-1. Use body.encode('utf-8') if you want to send it encoded in UTF-8的错误 原因:从excel中读取你的接口请求数据时带有中文时在发送求情时会出现上述错误.只需要将请求数据转化为bytes类型即可…
读取文本.图.表.解压信息 import docx import zipfile import os import shutil '''读取word中的文本''' def gettxt(): file=docx.Document("gao.docx") print("段落数:"+str(len(file.paragraphs)))#段落数为13,每个回车隔离一段 #输出每一段的内容 # for para in file.paragraphs: # print(par…
float是8个有效位, 做个试验: 输出如下: 上面说明了什么: 1, 18/2.2 是除不尽的, 因为是define,所以没有给ratio变量赋值类型,但是从sizeof输出的结果是8,所以系统默认给ratio的类型是double类型了. 即是是除进了 #define  ratio 8.8  这样就算是有限的小数,也是double类型的. 2,%.3f是可以输出小数点三位的,但是我们看到循环部分是1818181818....然后输出3位小数的时候,就是进一了,出现了182,这个2就是进位得到…
from docx import Document path = r'D:\pywork\12' # word信息表所在文件夹 w = Document(path + '/' + 'word信息表.docx') #读取word a = w.paragraphs #读word中 所有 段落 内容 传给a for i in a: # 在每一个段落里面 操作 print(i.text) #显示每一段 内容 for j in i.runs: #在每一个 分块中 操作, print(j.text) #显示…