摘要: 搜一个就记一下,这里面的基本都是常用的。 跳转到第一行 gg 跳转到最后一行 shift + g 跳转到行首 shift + 6 跳转到行末 shift + 4 阅读全文
posted @ 2022-11-15 11:39 斐波那契的那点事儿 阅读(16) 评论(0) 推荐(0)
摘要: 百度翻译接口 def translate_baidu(word): url = 'https://fanyi.baidu.com/sug' data = {'kw': f'{word}'} res = requests.post(url, data=data).json() # print(json 阅读全文
posted @ 2022-11-14 15:17 斐波那契的那点事儿 阅读(23) 评论(0) 推荐(0)