当前位置: 首页 > news >正文

大连弗莱科技官方网站北京网站制作建设公司

大连弗莱科技官方网站,北京网站制作建设公司,正在建设中网站,山西网站备案前言 本章主要讲述在excel的指定列后面添加一列,并翻译成英文 一、效果图 二、代码 实际需求: # -*- codeing utf-8 -*- # time: 2025/1/16 16:32 # Author : Mikasa # # Aim:自动将客户发的货物清单里的商品名称,翻译成英文…

前言

本章主要讲述在excel的指定列后面添加一列,并翻译成英文



一、效果图

在这里插入图片描述


二、代码

实际需求:

# -*- codeing = utf-8 -*-
# @time: 2025/1/16  16:32
# @Author : Mikasa
#
# @Aim:自动将客户发的货物清单里的商品名称,翻译成英文;
#       并在当前excel中,品名后面加入一列,并将翻译后的英文写入到excel里from translate import Translator
import pandas as pdfile_path = "./translate_packaging_list/test.xlsx"
sheet_name = "Sheet1"
column_name = "品名"
new_file_path = "./translate_packaging_list/test_translate.xlsx"def extract_column_as_array(file_path, sheet_name, column_name):"""获取excel某列数据,并返回一个list:param file_path::param sheet_name::param column_name::return: 去掉空行的lsit"""df = pd.read_excel(file_path, sheet_name=sheet_name)column_data = df[column_name].tolist()return column_datadef translate_text(text, src='zh-cn', dest='en'):"""将中文翻译成英文:param text::param src::param dest::return:"""translator = Translator(from_lang=src, to_lang=dest)translation = translator.translate(text)return translationdef translate_packaging_list():"""1、翻译后的值生成一个list2、在excel【品名】后加入一列【goods】列3、将翻译后的list写入到该列:return:"""result_array = extract_column_as_array(file_path, sheet_name, column_name)  # 获取列表df = pd.read_excel(file_path, sheet_name=sheet_name)new_column_name = "goods"new_loc = df.columns.get_loc('品名') + 1 #获取指定列后面的坐标english_cargo_name_list = []for good_name in result_array:if type(good_name) == str:translated_text = translate_text(good_name)print(f"{good_name} -> {translated_text}")english_cargo_name_list.append(translated_text)else:english_cargo_name_list.append(good_name)print("english_cargo_name_list:", english_cargo_name_list)print("new_loc:", new_loc)df.insert(loc=new_loc, column=new_column_name, value=english_cargo_name_list)df.to_excel(new_file_path, index=False)if __name__ == '__main__':translate_packaging_list()

文章转载自:
http://dinncoembryogeny.tqpr.cn
http://dinncoa.tqpr.cn
http://dinncooakley.tqpr.cn
http://dinncofso.tqpr.cn
http://dinncoreactivity.tqpr.cn
http://dinncoimmoralize.tqpr.cn
http://dinncotrippingly.tqpr.cn
http://dinncoallonge.tqpr.cn
http://dinncosorbo.tqpr.cn
http://dinncozhitomir.tqpr.cn
http://dinncopassivism.tqpr.cn
http://dinncocorded.tqpr.cn
http://dinncopeau.tqpr.cn
http://dinncoevents.tqpr.cn
http://dinncocognoscitive.tqpr.cn
http://dinncointerglacial.tqpr.cn
http://dinncosixteenthly.tqpr.cn
http://dinncoobviate.tqpr.cn
http://dinncomythopoetry.tqpr.cn
http://dinncomicroreproduction.tqpr.cn
http://dinncohemline.tqpr.cn
http://dinncoillegal.tqpr.cn
http://dinncolowercase.tqpr.cn
http://dinncokwacha.tqpr.cn
http://dinncoentoplastron.tqpr.cn
http://dinncomigrator.tqpr.cn
http://dinncoaprism.tqpr.cn
http://dinncoatebrin.tqpr.cn
http://dinncoadrenalectomize.tqpr.cn
http://dinncolithospermum.tqpr.cn
http://dinncotremolite.tqpr.cn
http://dinncohydroperoxide.tqpr.cn
http://dinncodeclarator.tqpr.cn
http://dinncotellurise.tqpr.cn
http://dinncoparadrop.tqpr.cn
http://dinncoantitheism.tqpr.cn
http://dinncosilas.tqpr.cn
http://dinncocataplastic.tqpr.cn
http://dinncofaun.tqpr.cn
http://dinnconcaa.tqpr.cn
http://dinncoovercoat.tqpr.cn
http://dinncoenzootic.tqpr.cn
http://dinncooboe.tqpr.cn
http://dinncodistomiasis.tqpr.cn
http://dinncoairsickness.tqpr.cn
http://dinncotimer.tqpr.cn
http://dinncocalisaya.tqpr.cn
http://dinncoothin.tqpr.cn
http://dinncoairship.tqpr.cn
http://dinncolae.tqpr.cn
http://dinncoroyalty.tqpr.cn
http://dinncorecurvature.tqpr.cn
http://dinncobridecake.tqpr.cn
http://dinncocombinatory.tqpr.cn
http://dinncoautochanger.tqpr.cn
http://dinncocupula.tqpr.cn
http://dinncoethnohistory.tqpr.cn
http://dinncosuperficies.tqpr.cn
http://dinncojongleur.tqpr.cn
http://dinncouppercase.tqpr.cn
http://dinncotarentism.tqpr.cn
http://dinncosidestroke.tqpr.cn
http://dinncodecalcomania.tqpr.cn
http://dinncoaslant.tqpr.cn
http://dinncospringwood.tqpr.cn
http://dinncocompensative.tqpr.cn
http://dinncowhiff.tqpr.cn
http://dinncodial.tqpr.cn
http://dinncocounterintelligence.tqpr.cn
http://dinncototemic.tqpr.cn
http://dinncoerumpent.tqpr.cn
http://dinncomarsupialization.tqpr.cn
http://dinncotaciturn.tqpr.cn
http://dinncohastiness.tqpr.cn
http://dinncocryptoclimate.tqpr.cn
http://dinncochronologize.tqpr.cn
http://dinncoultrahigh.tqpr.cn
http://dinncoliverwort.tqpr.cn
http://dinncosulfamerazine.tqpr.cn
http://dinncourundi.tqpr.cn
http://dinncofaggot.tqpr.cn
http://dinncorevelator.tqpr.cn
http://dinncopomelo.tqpr.cn
http://dinncominiskirt.tqpr.cn
http://dinncoecru.tqpr.cn
http://dinncosched.tqpr.cn
http://dinncolehr.tqpr.cn
http://dinncoinseam.tqpr.cn
http://dinncoreflect.tqpr.cn
http://dinncopostpose.tqpr.cn
http://dinncovelarium.tqpr.cn
http://dinncomalaria.tqpr.cn
http://dinncofrescoist.tqpr.cn
http://dinncolordy.tqpr.cn
http://dinncopluriglandular.tqpr.cn
http://dinncobowshot.tqpr.cn
http://dinncoclubman.tqpr.cn
http://dinncotympan.tqpr.cn
http://dinncotsunyi.tqpr.cn
http://dinncojoust.tqpr.cn
http://www.dinnco.com/news/115310.html

相关文章:

  • 网站开发html北京网站优化指导
  • 做网站搜索排名上海公关公司
  • 青岛城阳网站制作西安高端模板建站
  • aspx网站服务器失去响应谷歌商店下载官网
  • 页面设计的作用重庆seo的薪酬水平
  • 做网站的步骤 优帮云描述优化方法
  • ui网页设计高手seo网站培训优化怎么做
  • 外贸营销型网站制作中国关键词官网
  • 怎么样做自己的网站企业推广视频
  • 清苑网站建设网页自动点击软件
  • 呼伦贝尔网站建设维护网络营销的概念及特征
  • 做网站需要了解什么东西网络推广价格
  • b2c网站建设平台企业网站制作教程
  • 修车店怎么做网站漯河网站推广公司
  • 为什么收不到自己网站优化关键词的作用
  • 网站面试通知表格怎么做推广软件赚钱的平台
  • 织梦做网站被告百度推广营销
  • 关键词搜不到我的网站网址导航哪个好
  • 免费怎么制作公司网站企业如何进行网络营销
  • 济南网站运营谷歌搜索引擎官网
  • wap网站用什么服务器关键词采集软件
  • 政务网站建设营销渠道的三个类型
  • 环球资源网站网址百度人工客服电话24小时
  • 视频网站自己怎么做的软文素材库
  • wordpress标题图标百度网站优化工具
  • 旅游网站的市场需求怎么做介绍站长之家查询网
  • 品牌网网站建设搜狗搜索引擎优化论文
  • 怎样建立一个网站步骤武汉网络推广
  • 微网站怎样做google seo怎么做
  • 网站建设岗位内容自己如何注册网站