国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

python讀文件保存到字典,修改字典并寫入新文件的實例

2020-02-22 23:48:40
字體:
來源:轉載
供稿:網友

實例如下所示:

tcode={}transcode={}def GetTcode():#從文本中獲取英文對應的故障碼,并保存在tcode字典(故障碼文本樣例:oxff,0xff,0x00,0x01,	"Fuel Volume Regulator Control Circuit High")	with open('text_en.txt','r+')as fileone:		for line in fileone.readlines():			if not line:				continue			line=line.strip()			titems=line.split('/t')			strkey=titems[0].lower()			strtemp=titems[1]			tcode[strkey]=strtempdef GetTransCode():#從文本中獲取中文對應的故障碼,并保存在tcode字典(故障碼文本樣例:oxff,0xff,0x00,0x01,	"燃油調節器控制電路過高")	with open('text_cn.txt','r+') as fileone:		for line in fileone.readlines():			if not line:				continue			line=line.strip()			transcode[line.split('/t')[0].lower()]=line.split('/t')[1]def ReplaTransCode():#將已經翻譯的中文故障碼在英文文本中用ID查找出來并替換,對新的tcode字典key進行排序,并寫入新的文本中	for findkey in transcode.keys():		if tcode.get(findkey,-1)!= -1:			tcode[findkey]=transcode[findkey]	templine=[]	lkeys=tcode.keys()	lkeys.sort()	for key in lkeys:		value=tcode.get(key)		key=key.upper().replace("0X","0x")		templine.append("%s/t%s/n"%(key,value))	with open('text_trans.txt','w+') as filetwo:		filetwo.writelines(templine)if __name__ == '__main__':	GetTcode()	GetTransCode()	ReplaTransCode()

以上這篇python讀文件保存到字典,修改字典并寫入新文件的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持武林站長站。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 藁城市| 卢湾区| 海安县| 青铜峡市| 聂荣县| 沧州市| 巴中市| 神木县| 江油市| 虎林市| 于田县| 双城市| 株洲县| 抚州市| 灯塔市| 开封市| 晋州市| 武乡县| 株洲县| 越西县| 防城港市| 宣城市| 永清县| 乌审旗| 蒙城县| 利辛县| 昌平区| 巩留县| 呈贡县| 吴川市| 保康县| 肇庆市| 太仓市| 阿克陶县| 大理市| 临沂市| 玛沁县| 南通市| 巩义市| 衡阳县| 喜德县|