当前位置:
首页 > Python基础教程 >
-
python基础教程之Python基础:输入与输出(I/O)
来做一个NLP任务
步骤为:
1.读取文件;
2.去除所有标点符号和换行符,并把所有大写变成小写;
3.合并相同的词,统计每个词出现的频率,并按照词频从大到小排序;
4.将结果按行输出到文件 out.txt。
代码:
import re import os,sys # 你不用太关心这个函数 def parse(text): # 使用正则表达式去除标点符号和换行符 text = re.sub(r'[^\w ]', '', text) # 转为小写 text = text.lower() # 生成所有单词的列表 word_list = text.split(' ') # 去除空白单词 word_list = filter(None, word_list) # 生成单词和词频的字典 word_cnt = {} for word in word_list: if word not in word_cnt: word_cnt[word] = 0 word_cnt[word] += 1 print(word_cnt.items()) # 按照词频排序 sorted_word_cnt = sorted(word_cnt.items(), key=lambda kv: kv[1], reverse=True) return sorted_word_cnt inFile = 'in.txt' if not os.path.exists(inFile): print(f'file {inFile} not exist') sys.exit() with open(inFile, 'r') as fin: text = fin.read() word_and_freq = parse(text) outFile = 'out.txt' with open(outFile, 'w') as fout: for word, freq in word_and_freq: try: fout.write('{} {}\n'.format(word, freq)) except Exception as ex: print(f"error in wirte {outFile},error msg:{ex}")
假如文件非常大,一次性读取可能会导致内存崩溃,那么可以用一行一行读取的方法来实现:
from collections import defaultdict import re,sys,os inFile = 'in.txt' if not os.path.exists(inFile): print(f'file {inFile} not exist') sys.exit() f = open(inFile, mode="r", encoding="utf-8") word_cnt = defaultdict(int) #defaultdict类的初始化函数接受一个类型作为参数,当所访问的键不存在的时候,可以实例化一个值作为默认值 for line in f: #逐行读取 line =re.sub(r'[^\w ]', '', line) #使用正则表达式去除标点符号和换行符 for word in filter(None, line.split(' ')): #按空格把单词分组,并把空白单词去掉 word_cnt[word] += 1 outFile = 'out.txt' with open(outFile,'w') as fout: for word, freq in sorted(word_cnt.items(), key=lambda kv: kv[1], reverse=True): try: fout.write(f'{word} {freq}\n') except Exception as ex: print(f"error in wirte {outFile},error msg:{ex}")
I/O需谨慎,所有I/O操作都应该进行错误处理,以防编码漏洞。
Json 序列化与反序列化
json.dumps() 这个函数,接受 Python 的基本数据类型,然后将其序列化为 string;
json.loads() 这个函数,接受一个合法字符串,然后将其反序列化为 Python 的基本数据类型。
同样的,Json序列化与反序列化时也要注意做错误处理,比如json.loads('123.2')会返回一个float类型。因此反序列化后需要判断是否期望的类型:
original_params = json.loads(params_str) t = type(original_params) if t is not dict: print(f'is {t} not dict')
json.dumps() 与json.loads()例子:
import json,sys params = { 'symbol': '123456', 'type': 'limit', 'price': 123.4, 'amount': 23 } try: params_str = json.dumps(params) except Exception as ex: print(f'error on dumps error msg:{ex}') sys.exit() print('after json serialization') print('type of params_str = {}, params_str = {}'.format(type(params_str), params)) #after json serialization #type of params_str = <class 'str'>, params_str = {'symbol': '123456', 'type': 'limit', 'price': 123.4, 'amount': 23} original_params = json.loads(params_str) t = type(original_params) if t is not dict: print(f'is {t} not dict') print('after json deserialization') print('type of original_params = {}, original_params = {}'.format(type(original_params), original_params)) #after json deserialization #type of original_params = <class 'dict'>, original_params = {'symbol': '123456', 'type': 'limit', 'price': 123.4, 'amount': 23}
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式