python英汉互译程序
时间: 2024-01-05 12:14:21 浏览: 76
内网英汉互译离线翻译服务 支持Python C# Java等几乎所有语言调用 服务已经集成所有运行环境 编程新手轻松上手
5星 · 资源好评率100%
我可以为您提供一个基于Python的英汉互译程序,您需要安装第三方库“requests”和“json”。
以下是示例代码:
```python
import requests
import json
def translate(content):
url = 'http://fanyi.youdao.com/translate?smartresult=dict&smartresult=rule'
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'}
data = {
'i': content,
'from': 'AUTO',
'to': 'AUTO',
'smartresult': 'dict',
'client': 'fanyideskweb',
'salt': '1517763880799',
'sign': '205a7cf30b3cbd952d034697fe40dfde',
'doctype': 'json',
'version': '2.1',
'keyfrom': 'fanyi.web',
'action': 'FY_BY_ENTER',
'typoResult': 'true'
}
response = requests.post(url=url, headers=headers, data=data)
response.encoding = 'utf-8'
text = json.loads(response.text)
result = text["translateResult"][0][0]["tgt"]
return result
while True:
content = input("请输入内容:")
if content == "exit":
break
result = translate(content)
print("翻译结果:",result)
```
阅读全文