如何翻译英文文章
程序员文章站
2022-07-13 15:20:58
...
原则
ES篇
- Elasticsearch can be quickly started for development or testing use with the following command
翻译:可以使用以下命令快速启动Elasticsearch 以进行开发或测试使用
分析:
中文表达 更青睐于主动形态
with 语句做状语应该放在句首or句尾<看句子通顺与否>
for 表目的,为了。。。
FLASK篇
- the function to call when serving a request to the provided endpoint
翻译: 响应一条已提供端点的请求时,要调用相应的视图函数
分析:
to :。。。的。。。
serving a request:视图函数出现的原因,就是要服务某个请求,换句话说就是响应请求
endpoint ------ the endpointfor
the registered URL rule<已注册URL规则的端点>. Flask itself assumes the name of the view function as endpoint
python 源码篇
- The
.__next__()
method continues until <直到。。。为止>the shortest iterable in the argument sequence is exhausted <迭代结束> - Join two or more pathname components, inserting ‘/’<正斜杠> as needed<根据需要>.
If any component is an absolute path, all previous path components will be discarded. An empty last part<形参列表的最后一个参数> willresult in
a path that ends with a separator.
# python 控制台
te=os.path.join('/key',"c:/abc",'cdf')
print(te) # c:/abc\cdf
te # 'c:/abc\\cdf' #linux, win10 都可以访问反斜杠,正斜杠结合的路径
os.path.join('/key',"c:/abc",r'') 'c:/abc\\'
上一篇: 数字颠倒