|
restrain 音标拼音: [ristr'en] v. 克制,限制,抑制,约束,拘束,束缚 克制,限制,抑制,约束,拘束,束缚 restrain v 1: keep under control; keep in check; " suppress a smile"; " Keep your temper"; " keep your cool" [ synonym: { restrain}, { keep}, { keep back}, { hold back}] 2: place limits on ( extent or access); " restrict the use of this parking lot"; " limit the time you can spend with your friends" [ synonym: { restrict}, { restrain}, { trammel}, { limit}, { bound}, { confine}, { throttle}] 3: to close within bounds, limit or hold back from movement; " This holds the local until the express passengers change trains"; " About a dozen animals were held inside the stockade"; " The illegal immigrants were held at a detention center"; " The terrorists held the journalists for ransom" [ synonym: { restrain}, { confine}, { hold}] 4: hold back [ synonym: { restrain}, { encumber}, { cumber}, { constrain}] 5: to compel or deter by or as if by threats [ synonym: { intimidate}, { restrain}] Restrain \ Re* strain"\, v. t. [ imp. & p. p. { Restrained}; p. pr. & vb. n. { Restraining}.] [ OE. restreinen, F. restreindre, fr. L. restringere, restrictum; pref. re- re- stringere to draw, bind, or press together. See { Strain}, v. t., and cf. { Restrict}.] 1. To draw back again; to hold back from acting, proceeding, or advancing, either by physical or moral force, or by any interposing obstacle; to repress or suppress; to keep down; to curb. [ 1913 Webster] Restrain in me the cursed thoughts that nature Gives way to in repose! -- Shak. [ 1913 Webster] 2. To draw back toghtly, as a rein. [ Obs.] -- Shak. [ 1913 Webster] 3. To hinder from unlimited enjoiment; to abridge. [ 1913 Webster] Though they two were committed, at least restrained of their liberty. -- Clarendon. [ 1913 Webster] 4. To limit; to confine; to restrict. -- Trench. [ 1913 Webster] Not only a metaphysical or natural, but a moral, universality also is to be restrained by a part of the predicate. -- I. Watts. [ 1913 Webster] 5. To withhold; to forbear. [ 1913 Webster] Thou restrained prayer before God. -- Job. xv. 4. [ 1913 Webster] Syn: To check; hinder; stop; withhold; repress; curb; suppress; coerce; restrict; limit; confine. [ 1913 Webster] 225 Moby Thesaurus words for " restrain": abate, adjust to, allay, alleviate, alter, anchor, arrest, assuage, attemper, bank the fire, bar, bind, bit, block, blunt, bottle up, bound, box in, box up, bridle, cage, cause, cause to, chain, chasten, check, circumscribe, cloister, coarct, collect, compel, condition, confine, constrain, contain, control, cool, cool off, coop, coop in, coop up, copyright, cork up, countercheck, crib, crimp, curb, curtail, dam up, damp, dampen, de- emphasize, deaden, debar, decelerate, delay, detain, diminish, discipline, dompt, downplay, draw the line, drive, dull, encage, enchain, enclose, enforce, enjoin, entrammel, extenuate, fasten, fence in, fetter, forbear, force, gag, govern, guard, gyve, hamper, handcuff, handicap, have, hedge, hedge about, hem in, hinder, hobble, hog- tie, hold, hold at bay, hold back, hold down, hold fast, hold in, hold in check, hold in custody, hold in leash, hold in restraint, hold up, hopple, immure, impede, impel, impound, imprison, incarcerate, inhibit, intercept, interfere, interfere with, intermeddle, interrupt, intervene, keep, keep back, keep from, keep in, keep in check, keep in custody, keep in detention, keep under control, keep within bounds, lash, lay, lay under restraint, leash, leaven, lenify, lessen, lighten, limit, lock up, make, make fast, manacle, meddle, mew, mew up, mitigate, moderate, modify, modulate, moor, muzzle, narrow, obstruct, obtund, oppose, palliate, patent, peg down, pen, pen up, picket, pin down, pinion, play down, pound, prevent, prohibit, pull, pull in, purify, put in irons, qualify, rail in, reduce, reduce the temperature, refrain, register, regulate, regulate by, rein, rein in, repress, resist, restrict, retard, retrench, rope, scant, scotch, seal up, season, secure, set back, set conditions, set limits, shackle, shut in, shut up, simmer down, simplify, slacken, slow down, smother, snub, sober, sober down, soften, specialize, stifle, stint, stop, straiten, straitjacket, strap, subdue, suppress, tame, temper, tether, tie, tie down, tie up, tone down, trammel, tune down, underplay, use force upon, wall in, weaken, withhold
|
安装中文字典英文字典查询工具!
中文字典英文字典工具:
英文字典中文字典相关资料:
- Python list列表删除元素(4种方法) - C语言中文网
在 Python 列表中删除元素主要分为以下 3 种场景: 根据目标元素所在位置的索引进行删除,可以使用 del 关键字或者 pop() 方法; 根据元素本身的值进行删除,可使用列表(list类型)提供的 remove() 方法;
- Python list列表的用法(非常详细) - C语言中文网
Python删除列表元素 del 关键字可删除列表中的指定元素。例如: list = ['北京', '深圳', '上海', '广州'] del list[0] # 删除第一个元素“北京” print(list) 运行结果是: ['深圳', '上海', '广州'] Python查找列表元素
- Python列表(list)、元组(tuple)、字典(dict)和集合 . . .
Python 中的序列类型包括列表(list)、元组(tuple)、字典(dict)和集合(set)。 在 Python 编程中,我们既需要独立的变量来保存一份数据,也需要序列来保存大量数据。
- Python list列表详解(图文并茂,新手必看) - C语言中文网
Python删除列表元素 在 Python 中,可以使用 del 语句来删除列表的元素。 【实例 5】使用 del 语句删除列表元素。 list = ['Google','Runoob',1997,2020] print ("原始列表:", list) del list[2] print ("删除第三个元素:", list) 运行程序,输出如下: 原始列表: ['Google
- Python list列表详解 - C语言中文网
Python删除列表 对于已经创建的列表,如果不再使用,可以使用 del 关键字将其删除。 实际开发中并不经常使用 del 来删除列表,因为 Python 自带的垃圾回收机制会自动销毁无用的列表,即使开发者不手动删除,Python 也会自动将其回收。
- Python list列表修改元素 - C语言中文网
Python 提供了两种修改列表(list)元素的方法,你可以每次修改单个元素,也可以每次修改一组元素(多个)。 修改单个元素 请看下面的例子:
- Python list列表添加元素的3种方法 - C语言中文网
实际开发中,经常需要对 Python 列表进行更新,包括向列表中添加元素、修改表中元素以及删除元素。 本节先来学习如何向列表中添加元素。 《 Python序列 》一节告诉我们,使用 + 运算符可以将多个序列连接起来;列表是序列的一种,所以也可以使用 + 进行连接
- Python tuple元素详解(附带实例) - C语言中文网
元组和列表(list)的不同之处在于: 列表的元素是可以更改的,包括修改元素值,删除和插入元素,所以列表是可变序列; 元组一旦被创建,它的元素就不可更改了,所以元组是不可变序列。
- Java List. remove()方法:移出列表中的指定元素 - C语言中文网
本示例使用 List 接口的实现类 ArrayList 初始化一个列表对象 list,并向该列表中添加 3 个元素,然后调用 remove 方法移除元素“从我做起”,并输出执行结果。
- Python dict字典详解 - C语言中文网
和删除列表、元组一样,手动删除字典也可以使用 del 关键字,例如: a = dict(two=0 65, one=88, three=100, four=-59) print(a) del a print(a) 运行结果:
|
|