标签:any python 翻译 highlight 解析json urllib text print pos
import requests import json # 1. url url = ‘http://fanyi.baidu.com/sug‘ # 2. form/ data/ body def translate(kw): form = { ‘kw‘: kw } # request 的post方法色使用 response = requests.post(url, data=form) # str = response.content.decode(‘utf-8/gbk/gb2312/gb18080‘) = response.encoding = ‘utf-8/gbk/gb2312/gb18080‘ str = response.text # 4. 解析json res_dict = json.loads(response.text) # 5. 打印翻译结果 #print(res_dict) result = res_dict[‘data‘][0][‘v‘] return result if __name__ == ‘__main__‘: res = translate(‘哈哈‘) print(res) res = translate(‘绿色‘) print(res)
标签:any python 翻译 highlight 解析json urllib text print pos
原文地址:https://www.cnblogs.com/gxsmm/p/9484520.html