They provide a means of keeping track of the thousands of journal papers that are published monthly or quarterly.

它们提供了一种跟踪每月或每季发表的数千篇期刊论文的方法。
 
From observers’ estimates of the brightness of the fireball, he deduced that the body in the space was between 40 feet and 260 feet in diameter.
根据观测者对火球亮度的估计,他推断,该天体的直径在40英尺到260英尺之间。
 
The three branches of government --- the legislative, the executive, and the judicial----restrain and stabilize one another through their separated functions.
政府的三个部门——立法、行政和司法——通过各自的职能相互制约和稳定。
 
The local people could hardly think of any good way to shake off poverty they had endured.
当地人几乎想不出任何摆脱他们所忍受的贫困的好办法。
 
A leading British scholar has proposed translating Shakespeare into contemporary English for the benefit of young audiences who are confused by jokes which are 400 years out of date.
英国一位著名学者提议将莎士比亚的作品翻译成当代英语,以帮助那些被过时400年的笑话弄糊涂的年轻观众。

L242的更多相关文章

随机推荐

  1. 【eclipse】聚合工程maven启动Tomcat报错

    严重: Error configuring application listener of class严重: Skipped installing application listeners due ...

  2. NOI 7614 最低通行费(多段图最短路)

    http://noi.openjudge.cn/ch0206/7614/ 题意: 有一个N*N的正方形网格,商人从网格的左上角进,右下角出.每穿越中间1个小方格,都要花费1个单位时间.商人必须在(2N ...

  3. fusion--RNAseq

    融合基因(Fusion gene)是指两个基因的全部或一部分的序列相互融合为一个新的基因的过程.其有可能是染色体易位.中间缺失或染色体倒置所致的结果. 异常的融合基因可以引起恶性血液疾病以及肿瘤.例如 ...

  4. 【Python】【问题集锦】

    1. 用pycharm安装第三方包失败,报类似于“sort"的错误,就转战终端 2. Mac终端安装第三包失败,报类似于“ PermissionError: [Errno 13] Permi ...

  5. PHP生成缩略图的一个方法类(转)

    //使用如下类就可以生成图片缩略图 class resizeimage { //图片类型 var $type; //实际宽度 var $width; //实际高度 var $height; //改变后 ...

  6. Python写ROS 订阅与发布程序

    1. 编写talker代码 vim ..../src/talker.py #!/usr/bin/env python # license removed for brevity import rosp ...

  7. 雷林鹏分享:C# 正则表达式

    C# 正则表达式 正则表达式 是一种匹配输入文本的模式..Net 框架提供了允许这种匹配的正则表达式引擎.模式由一个或多个字符.运算符和结构组成. 定义正则表达式 下面列出了用于定义正则表达式的各种类 ...

  8. python模块——random模块(简单验证码实现)

    实现一个简单的验证码生成器 #!/usr/bin/env python # -*- coding:utf-8 -*- __author__ = "loki" # Usage: 验证 ...

  9. pip 源 替换国内源

    网上收集来的pip源地址: 阿里云 http://mirrors.aliyun.com/pypi/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simp ...

  10. 20 多继承 MRO 算法 深度优先遍历 super

    类的多继承 一个类可以继承多个无关的类. 一个类可以被多个无关的类继承 1.经典类. 在python2.2之前. 已经是历史了. MRO 采用的是树形结构的深度递归遍历(一条道跑到黑) 2.新式类 在 ...