上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 24 下一页
摘要: dict.txt 迅雷不及掩耳盗铃之势 1 掩耳盗铃 2 铃儿响叮当 3 当仁不让 5 让世界充满爱 3 让世界充满爱 5 迅雷不及 0 迅雷 0 掩耳 0 盗铃 0 实现代码 # -*- ecoding: utf-8 -*- # @ModuleName: test002 # @Function: 阅读全文
posted @ 2022-05-09 01:13 darling331 阅读(140) 评论(0) 推荐(0)
摘要: 这篇文章已经很详细了,我就不造轮子了 阅读全文
posted @ 2022-05-07 00:28 darling331 阅读(43) 评论(0) 推荐(0)
摘要: count() 方法用于统计字符串里某个字符或子字符串出现的次数. st1 = input().upper() st2 = input().upper() print(st1.count(st2)) tips: 只要将所有字符串统一转化为大写或者小写,计算次数即可。 upper()全部转化为大写 l 阅读全文
posted @ 2022-05-07 00:25 darling331 阅读(463) 评论(0) 推荐(0)
摘要: def save_html(title): try: # 命名生成的html gen_html = '{}.html'.format(title) # 打开文件,准备写入 f = open(gen_html, 'w', encoding='UTF-8') # 准备相关变量 str1 = 'my na 阅读全文
posted @ 2022-05-07 00:21 darling331 阅读(239) 评论(0) 推荐(0)
摘要: system.yaml配置文件的内容: stage1: number_of_shards: 3 # 命中次数 file_size: 600 # 字节 stage2: is_rows: True # 是否需要limit rows: 6000 # limit行数 loggfile: "loggle.lo 阅读全文
posted @ 2022-05-07 00:16 darling331 阅读(139) 评论(0) 推荐(0)
摘要: 原代码 data_path = "sources/weibo_senti_100k.csv" data_list = open(data_path).readlines()[1:] 报错: UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0xaf 阅读全文
posted @ 2022-05-07 00:09 darling331 阅读(511) 评论(0) 推荐(0)
摘要: pyMysql 链接使用后,不关闭报错 pymysql.err.InterfaceError: (0, ‘‘) 导致这个错误的原因是通过pymysql连接MySQL,没有关闭连接的操作,所以短时间内不会出问题,长时间保持这个连接会出现连接混乱。虽然看着自己的代码没错,还是会报pymysql.err. 阅读全文
posted @ 2022-05-07 00:04 darling331 阅读(520) 评论(0) 推荐(0)
摘要: 拿来即用的mysql连接池使用源码 # -*- ecoding: utf-8 -*- # @ModuleName: test002 # @Function: # @Author: darling # @Time: 2022-05-05 20:01 import configparser import 阅读全文
posted @ 2022-05-06 23:56 darling331 阅读(187) 评论(0) 推荐(0)
摘要: 原代码 def __init__(self, config_filename="dbMysqlConfig.cnf"): file_path = os.path.join(os.path.dirname(__file__), config_filename) self.cf = configpars 阅读全文
posted @ 2022-05-06 23:51 darling331 阅读(274) 评论(0) 推荐(0)
摘要: 操作系统:windows10 语言:Python3.9 IDE: PyCharm 本地代码执行时,使用jieba分词库,没有问题。原代码如下: # encoding = utf - 8 import jieba def word_segmentation(sentence): words_gener 阅读全文
posted @ 2022-05-06 23:40 darling331 阅读(432) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 24 下一页