欧陆词典生词本导入不被单词生词本(Python)
前言
众所周知,不被单词作为背单词软件体验很不错,而且还可以用户自定义导入生词本(支持.txt格式)。但不背单词无法在其他场景提取默生单词,我一直使用的欧陆词典就派上用场了,它将默生单词添加到生词本并导出。
所以本文介绍的就是:借助Python
将欧陆词典生词本导入不被单词生词本
一、欧陆词典生词本导出
注意导出时,自己定义路径和文件名。这里博主将导出文件放在桌面并定义文件名1.csv
二、Python转换格式
不背单词支持.txt格式
而且文本内一行只能放一个单词
,因此需要将文件1.csv
进行格式转换
利用Python将1.csv转换成1.txt,且内容是一行一个单词
import csv
file_path_input="1.csv"
file_paht_output="1.txt"
english_word=[]
def word_get_from_csv(file_path):
word_list = []
with open(file_path, "r", encoding="utf-8") as f:
reader = csv.reader(f)
for row in reader:
if (len(row) > 2):
word_list.append(row[1])
return word_list
def word_wirte_to_txt(file_path, word_list):
for i in range(len(word_list)):
with open(file_path, "a+", encoding="utf-8") as f:
f.write(word_list[i] + '\n')
words = word_get_from_csv(file_path_input)
print(words)
for i in range(len(words)):
if(words[i].encode('utf-8').isalpha()):
english_word.append(words[i])
word_wirte_to_txt(file_paht_output, english_word)
print(english_word)
三、不被单词导入
进入不背单词官网,登录账号,进入自定义单词书,开始导入生词本1.txt
.
接着按照如下步骤操作:选择上传文件
--> 识别
--> 添加描述
--> 确认提交
四、不备单词查看生词本
博主添加的词书名称:欧陆词典-生词本
,词书描述:欧陆词典-生词本