鱼C论坛

 找回密码
 立即注册
查看: 1840|回复: 2

python

[复制链接]
发表于 2020-9-25 20:16:36 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
求大佬们指点!!
下面是代码:
from tkinter import *
import urllib.parse
import urllib.request
import json

s=''
def gets():
    global s
    content=a
    url='http://fanyi.youdao.com/translate?smartresult=dict&smartresult=rule'
    data={}
    data['i']= content
    data['from']= 'AUTO'
    data['to']= 'AUTO'
    data['smartresult']= 'dict'
    data['client']= 'fanyideskweb'
    data['salt']= '16010215344356'
    data['sign']= '69394bd2122d2c170fd0fb97554dfc1d'
    data['lts']= '1601021534435'
    data['bv']= 'b396e111b686137a6ec711ea651ad37c'
    data['doctype']= 'json'
    data['version']= '2.1'
    data['keyfrom']= 'fanyi.web'
    data['action']= 'FY_BY_REALTlME'
    data=urllib.parse.urlencode(data).encode('utf-8')

    response = urllib.request.urlopen(url,data)
    html=response.read().decode('utf-8')

    target = json.loads(html)
    s=target['translateResult'][0][0]['tgt']
    print(html)



root = Tk()
Label(root,text="请输入翻译内容:").grid(row=0,column=0)
Label(root,text="翻译结果:").grid(row=1,column=0)

text1=Entry(root)
text1.grid(row=0,column=1,padx=10,pady=5)
a=text1.get()

text2=Text(root,width=20,height=2)
text2.grid(row=1,column=1)

def Reset():
    global s
    text2.delete(1.0, END)
    text2.insert(INSERT,s)

def translation():
    global s
    Reset()
    gets()
    print(html)

b= Button(root,text="翻译", command=translation)
b.grid(row=2,column=2)

mainloop()
1601036122(1).jpg
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-9-26 09:08:32 | 显示全部楼层

回帖奖励 +4 鱼币

有奖励么。。。。。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 0 反对 1

使用道具 举报

发表于 2020-9-27 10:28:44 | 显示全部楼层

回帖奖励 +4 鱼币

感谢鱼币
希望你的问题得到解决
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-11 02:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表