comprehend
- apprehend [Origin: apprehendere 'to take hold of', from ad- 'to' + prehendere 'to grasp, seize']
- comprehend [Origin: comprehendere 'to take hold of completely', from com- + prehendere 'to grasp, seize']
- reprehend [Origin: reprehendere from re- "back" + prehendere 'to grasp, seize'] criticize or rebuke 批评或指责
- 抓住(犯人): 逮捕。抓住(要点): 完全理解/掌握。……抓回来……(狠狠地批评)
comprehensive
- =thorough = complete ≠partial
- (英国的)综合中学,招收具有不同能力的学生的大型中学
Comprehension may refer to:
- Comprehension (logic), the totality of intensions, that is, properties or qualities, that an object possesses
- Comprehension approach, several methodologies of language learning that emphasize understanding language rather than speaking
- List comprehension, an adaptation of mathematical set notation to represent infinite lists in computer science
- Reading comprehension, a measurement of the understanding of a passage of text
Reading comprehension [阅读理解] is the ability to process text, understand its meaning, and to integrate with what the reader already knows. Fundamental skills required in efficient reading comprehension are knowing meaning of words, ability to understand meaning of a word from discourse context, ability to follow organization of passage and to identify antecedents and references in it, ability to draw inferences from a passage about its contents, ability to identify the main thought of a passage, ability to answer questions answered in a passage, ability to recognize the literary devices or propositional structures used in a passage and determine its tone, to understand the situational mood (agents, objects, temporal and spatial reference points, casual and intentional inflections, etc.) conveyed for assertions, questioning, commanding, refraining etc. and finally ability to determine writer's purpose, intent and point of view, and draw inferences about the writer (discourse [语段]-semantics [语义]). For machine reading comprehension, search natural language understanding.
A list comprehension is a syntactic construct available in some programming languages for creating a list based on existing lists. It follows the form of the mathematical set-builder notation (set comprehension) as distinct from the use of map and filter functions.
This is an example in set-builder notation: S = {x : x > 3} 集合的表示方法
The SETL programming language (1969) has a set formation construct which is similar to list comprehensions:
print([n in [2..N] | forall m in {2..n - 1} | n mod m > 0]);
The first use of the term "comprehension" for such constructs was in Rod Burstall and John Darlington's description of their functional programming language NPL from 1977.
# list, set, and dictionary comprehension in Python: >>>x = [i for i in '0123456789' if i > '3']; x ['4', '5', '6', '7', '8', '9'] >>>s = {v for v in 'ABCDABCD' if v not in 'CB'}; s {'A', 'D'} >>>s = {key: val for key, val in enumerate('ABCD') if val not in 'CB'}; s {0: 'A', 3: 'D'} # The enumerate object yields pairs containing a count and a value yielded by the iterable argument.
六级/考研单词: grasp, comprehend, comprehensive, thorough, logic, mathematics, infinite, compute, integrate, discourse, infer, mood, temporal, casual, convey, refrain, construct, filter, rod, dictionary, yield
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现