懵懂的菜鸟

Stay hungry,Stay foolish.

导航

2017年8月22日 #

python读取文件另存为

摘要: 1 fr = open(filename_r,encoding='cp852') 2 w2 = open(filename_w,'a')#a代表追加 w代表重写 3 4 for line in fr: 5 w2.write(line) 6 fr.close() 7 w2.close( ) 阅读全文

posted @ 2017-08-22 10:32 懵懂的菜鸟 阅读(9886) 评论(0) 推荐(0) 编辑

python 编码方式大全 fr = open(filename_r,encoding='cp852')

摘要: 7.8.3. Standard Encodings Python comes with a number of codecs built-in, either implemented as C functions or with dictionaries as mapping tables. The 阅读全文

posted @ 2017-08-22 10:22 懵懂的菜鸟 阅读(12063) 评论(0) 推荐(0) 编辑

python 修改文件编码方式

摘要: 详细解释: 阅读全文

posted @ 2017-08-22 09:52 懵懂的菜鸟 阅读(16371) 评论(0) 推荐(1) 编辑

python encode和decode

摘要: 字符串编码常用类型:utf-8,gb2312,cp936,gbk等。 Python中,我们使用decode()和encode()来进行解码和编码 在python中,使用unicode类型作为编码的基础类型。即 decode encode str > unicode >str 如上面代码,str\st 阅读全文

posted @ 2017-08-22 09:49 懵懂的菜鸟 阅读(442) 评论(0) 推荐(0) 编辑

2017年8月21日 #

LDA汇总

摘要: 1、Blei的LDA代码(C):http://www.cs.princeton.edu/~blei/lda-c/index.html2、D.Bei的主页:http://www.cs.princeton.edu/~blei/publications.html3、Gibbs LDA++ by Xuan- 阅读全文

posted @ 2017-08-21 20:21 懵懂的菜鸟 阅读(967) 评论(0) 推荐(0) 编辑

简单的Java,Python,C,C++

摘要: 1 Java 语言 2 //package main 3 //注意不要添加包名称,否则会报错。 4 5 import java.io.*; 6 import java.util.*; 7 cin.hasNext(); 8 cin.hasNextLine(); 9 cin.hasNextBigDecimal(); 10 cin.hasNextBigInteg... 阅读全文

posted @ 2017-08-21 19:30 懵懂的菜鸟 阅读(332) 评论(0) 推荐(0) 编辑

python读写操作

摘要: import sys 1 def test(): 2 a=int(input()) 3 x=[int(i) for i in input().split(' ')] 4 y=[int(j) for j in sys.stdin.readline().split(' ')] 5 for i in range(a): 6 b=sum_1... 阅读全文

posted @ 2017-08-21 19:28 懵懂的菜鸟 阅读(165) 评论(0) 推荐(0) 编辑

python数据库操作

摘要: 1 # -*- enconding:etf-8 -*- 2 import pymysql 3 import os 4 import time 5 import re 6 serveraddr="localhost" 7 user="root" 8 password="123456" 9 databaseName="test" 10 filename="./d... 阅读全文

posted @ 2017-08-21 16:48 懵懂的菜鸟 阅读(289) 评论(0) 推荐(0) 编辑

python文件对比

摘要: 1 #-*- encoding:utf-8 -*- 2 3 class loadDatas(object): 4 def __init__(self): 5 self.path='./data' 6 def load_compare(self): 7 l1={} 8 f1=open(self.path+'/95b.... 阅读全文

posted @ 2017-08-21 16:47 懵懂的菜鸟 阅读(250) 评论(0) 推荐(0) 编辑

python文件操作,读取,修改,合并

摘要: 1 # -*- coding:utf-8 -*- 2 ''' 3 从11c开始提取 4 ''' 5 import re 6 import numpy as np 7 import os 8 year = '17A' 9 ss="./data/edmd/" 10 # filename=ss+"/EDMDI1.17A" 11 try: 12 os.r... 阅读全文

posted @ 2017-08-21 16:45 懵懂的菜鸟 阅读(673) 评论(0) 推荐(0) 编辑