V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  justincnn  ›  全部回复第 28 页 / 共 31 页
回复总数  616
1 ... 20  21  22  23  24  25  26  27  28  29 ... 31  
2020-11-17 19:34:04 +08:00
回复了 justincnn 创建的主题 问与答 *求助* Python 代码求助,谢谢大家
@kermitlee 嗯嗯,但是不知道如何写 print 呢,可以帮忙下么?谢谢啊
2020-11-17 19:23:49 +08:00
回复了 justincnn 创建的主题 问与答 *求助* Python 代码求助,谢谢大家
@Wolfsin

def translateBaidu(content, fromLang='en', toLang='zh'):
salt = str(random.randint(32768, 65536))
sign = appid + content + salt + secretKey
sign = hashlib.md5(sign.encode("utf-8")).hexdigest()

try:
paramas = {
'appid': appid,
'q': content,
'from': fromLang,
'to': toLang,
'salt': salt,
'sign': sign
}
response = requests.get(apiurl, paramas)
jsonResponse = response.json() # 得到返回的结果,结果为 json 格式
dst: str = str(jsonResponse["trans_result"]
[0]["dst"]) # 取得翻译后的文本结果
return dst
except Exception as e:
print(e)


def excelTrans(srcFilename=r'/Users/justin/Desktop/FANYI.xlsx', desFilename=r'/Users/justin/Desktop/FANYI1.xlsx',
srcSheet='Sheet1', srcColumn=1, srcRowBegin=1, srcRowEnd=2,
desColumn=1, desSheet='中文品名'):
wb = openpyxl.load_workbook(srcFilename)
ws = wb[srcSheet]
wb2 = Workbook()
ws2 = wb2.create_sheet(title=desSheet)

for i in range(srcRowBegin, srcRowEnd, 1):
result = ws.cell(row=i, column=srcColumn).value
if not (result is None):
ws2.cell(row=i-srcRowBegin+1,
column=desColumn).value = translateBaidu(result)
print(result+"translate is done")

wb2.save(desFilename)


if __name__ == '__main__':
print('translate begin...')
excelTrans()
print('ending...')
2020-11-17 19:14:00 +08:00
回复了 justincnn 创建的主题 问与答 *求助* Python 代码求助,谢谢大家
print(result) 之后只有原文件的英文,没有中文,这个怎么修改啊,
2020-08-22 18:29:27 +08:00
回复了 justincnn 创建的主题 问与答 apple music 的 mac 端载入界面好慢啊,
@dot2017 ios 只是稍微好一点,和国内的音乐 app 比起来也是慢的很,哎。apple music 什么时候可以在国内也建个服务器
@Jooooooooo You do not have permission to move the file “Chess” to the trash. 不能删除啊
2020-06-16 15:26:05 +08:00
回复了 askfermi 创建的主题 Apple OpenCore 出了自带"完美"黑苹果的台式机
https://opencore.computer/

打不开啊,科学了也打不开啊
2020-05-27 08:33:16 +08:00
回复了 Liampor 创建的主题 macOS 10.15.5 的正式版更新来了, 先锋队又可以来说说了
@Badlion 哈哈,你赢了
2020-05-19 13:16:37 +08:00
回复了 leewi9coder 创建的主题 MacBook Pro 说一下我心目中理想的 MacBook Pro。。。会有么
你这个要求,本子得厚到什么程度啊,别想了,现在唯一的期望就是 amd yes 了,哈哈
2020-03-09 00:30:26 +08:00
回复了 Penryn 创建的主题 硬件 Chromebook Pixel 2015 和 Pixelbook 2017 哪个装 Win10 体验好点
@kouryustore.google.com 写着 都是 ssd 啊
1 ... 20  21  22  23  24  25  26  27  28  29 ... 31  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1043 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 30ms · UTC 19:30 · PVG 03:30 · LAX 11:30 · JFK 14:30
Developed with CodeLauncher
♥ Do have faith in what you're doing.