编程入门单词

合集下载

python需要背的单词

python需要背的单词

python需要背的单词一、基础词汇。

1. print.- 音标:[prɪnt]- 词性:动词(v.)- 含义:用于输出内容到控制台。

例如:`print("Hello, World!")`。

2. input.- 音标:[ˈɪnpʊt]- 词性:函数(在Python中可视为动词性操作,v.)- 含义:用于接收用户的输入。

例如:`user_input = input("Please enter something: ")`。

3. if.- 音标:[ɪf]- 词性:连词(conj.)- 含义:用于条件判断。

例如:`if a > 10: print("a is greater than 10")`!4. else.- 音标:[els]- 词性:连词(conj.)- 含义:与if搭配使用,在if条件不满足时执行相应代码。

例如:`if a > 10: print("a is greater than 10") else: print("a is not greater than 10")`!5. elif.- 音标:[ˌelˈaɪf]- 词性:连词(conj.)- 含义:是“else if”的缩写,用于多条件判断中的中间条件判断。

例如:`if a > 10: print("a is greater than 10") elif a == 10: print("a is equal to 10") else: print("a is less than 10")`!6. while.- 音标:[waɪl]- 词性:连词(conj.),也可视为循环控制关键字(类似动词用法,v.)- 含义:用于创建循环,只要条件为真就执行循环体中的代码。

编程常用英语单词怎么写

编程常用英语单词怎么写

编程常用英语单词怎么写在学习编程的过程中,不可避免地会接触到大量的英语单词,这些单词是编程世界中不可或缺的一部分。

掌握了这些常用的英语单词,可以帮助我们更好地理解代码和技术文档。

下面将介绍一些编程中常用的英语单词及其正确的拼写方式。

常用数据类型IntegerInteger是整数的意思,在编程中通常用来表示整数类型的数据。

拼写时注意i 和e的顺序,不要拼写成intiger。

StringString表示字符串类型的数据,在编程中经常用来表示文本信息。

要记住s和t的顺序,不要写成stirng。

BooleanBoolean是布尔值的意思,通常只有两个取值,True或False。

正确的拼写是Boolean,不要拼错成Boolen或Bolean。

FloatFloat代表浮点数的数据类型,在编程中用于表示带小数点的数字。

正确的写法是Float,不要写成Fload。

常用关键字FunctionFunction指的是函数,在编程中用于封装一段可重复利用的代码块。

注意f和u的顺序,正确拼写是Function。

VariableVariable表示变量,是程序中用来存储数据的一种载体。

记住a和i的位置,不要写成Vairable。

LoopLoop表示循环,用来重复执行一段代码块。

拼写时要注意oo的重复,写成Loop而不是Lop。

常用操作符EqualEqual表示等于,是编程中的比较运算符之一。

拼写时要注意e和a的位置,写成Equal而不是Eqaual。

PlusPlus表示加法运算,是编程中常用的算术操作符。

正确的写法是Plus,不要拼写成Pluss。

MinusMinus表示减法运算,是减去一个数的操作符。

正确的写法是Minus,不要拼写成Minas。

常见类名ArrayArray表示数组,是存储多个相同类型数据的数据结构。

不要写成Aray或Arry,正确的拼写是Array。

ListList表示列表,是一种有序的集合数据结构。

编程常用到的英文单词

编程常用到的英文单词

编程常用到的英文单词在学习和实践编程过程中,我们经常会接触到很多英文单词。

这些单词不仅是编程语言的关键词,也是编程文档、论坛交流中经常出现的术语。

熟练掌握这些英文单词对于提高编程能力和沟通效率都至关重要。

以下是一些编程中常用到的英文单词:1.Variable(变量):在编程中代表存储数据的容器,可以存储不同类型的值。

2.Function(函数):一段代码用来完成特定功能的封装,可以重复使用。

3.Class(类):用来创建对象的模板,包含属性和方法。

4.Object(对象):通过类实例化生成的实体,具有类定义的属性和方法。

5.Array(数组):一种数据结构,用来存储多个元素。

6.Loop(循环):用来重复执行一段代码块的结构。

7.Condition(条件):根据指定条件执行不同代码块的控制结构。

8.Parameter(参数):传递给函数的值,用于函数的输入和输出。

9.Statement(语句):表示一条具体操作或控制的指令。

10.Method(方法):与对象有关联的函数,用于描述对象的行为和操作。

以上是一些编程中常用到的英文单词,熟练掌握这些术语是学习编程的基础,也能帮助我们更好地理解和应用编程知识。

在编程过程中,不断积累和学习这些英文单词,将会为我们的编程之路增添更多的乐趣和成就感。

编程常用英语词汇在学习编程的过程中,掌握一些常用的英语词汇是非常重要的。

这些词汇不仅可以帮助我们更好地理解编程语言和文档,还能够增强我们在与国际同行交流的能力。

在本文中,我们将介绍一些编程中常用的英语词汇,帮助读者在学习和工作中更加游刃有余。

Data Types(数据类型)1.Integer - 整数2.Float - 浮点数3.String - 字符串4.Boolean - 布尔值5.Array - 数组6.Dictionary - 字典7.List - 列表8.Tuple - 元组Control Structures(控制结构)1.If statement - If语句2.Else statement - Else语句3.Elif statement - Elif语句4.For loop - For循环5.While loop - While循环6.Break statement - Break语句7.Continue statement - Continue语句Functions(函数)1.Function - 函数2.Parameter - 参数3.Return statement - 返回语句4.Void - 空5.Call - 调用Error Handling(错误处理)1.Exception - 异常2.Try block - Try块3.Except block - Except块4.Finally block - Finally块5.Raise statement - 抛出语句Object-Oriented Programming(面向对象编程)1.Class - 类2.Object - 对象3.Method - 方法4.Inheritance - 继承5.Encapsulation - 封装6.Polymorphism - 多态Libraries(库)1.Module - 模块2.Package - 包3.Import statement - 导入语句4.Install - 安装5.Pip - 软件包管理器通过掌握这些编程常用英语词汇,我们可以更加流畅地阅读和编写代码,理解编程文档,更好地与同行交流。

编程入门单词

编程入门单词

1. comma nd n. 命令,指令44. modification n. 改变,修改2. program n. 程序45. modified a. 修改的,变更的3. procedure n. . 过程,程序,工序46. uppercase n. 大写字母4. selecti on n. 选择47. debug vt. 调试5. fun cti on n. 函数,功能,操作48. lowercase i n. 下档,小写体6. followi ng a. 下列的,以下的49. un do vt. 取消,废除7. con trol v. 控制,支配,管理50. wildcard n. 通配符8. switch n. & \ '.开关,转换,切换51. memo n. 备忘录9. default v. 缺省,预置,约定52. loaded a. 有负载的10. en able vt. 启动,恢复正常操作53. len gth n.( 字,记录,块)长度11. margin n. 余量,边缘,边际54. rou nd v. 舍入,四舍五入12. select vt. 选择55. varia nt n. & a. 变体,易变的13. dialog n. & vt. 对话56. module n. 模块(程序设计)14. create vt. 创立,建立57. sav ing a. 保存的15. item n. 项,项目条款58. lin ker n. 连接程序16. edit vt. 编辑,编排,编篡59. loop n. 圈,环;(程序)循环,回17. parameter n . 参数,参变量路18. variable a. 可变的;n.变量60. process vt. 处理,进程,加工19. active a. 激活的,活动的61. refer v. 访问,引用,涉及20. defi niti on n. 定义,确实,清晰62. result n. 结果度63. syn tax n. 语法,文法,句法21. betwee n prep. 在…之间,中间64. n ull n. & a. 空(的),零(的)22. opti onal a. 任选的,可选的65. send v. 发送23. remove v. 除去,移动66. private a. 专用的,私人的24. arrow n. 箭头,指针67. collapse v. 崩溃,破裂25. label n. 标签,标号,标识符68. pass v. 传送,传递,遍(数)26. withi n prep. 在…以内69. public a. 公用的,公共的27. order n. & vt . 指令,次序;排序70. eject n. 弹出28. note n. 注解,注释71. step n. 步,步骤,步长,档29. backup n. 备份,后备,后援72. ignore vt. 不管,忽略不计30. vers ion n. 版本73. share v. 共享共田 /、尸,/、八J31. si ngle a. & n . 单个的;一个,单74. sequenee r 1. 顺序,时序,序列32. docume nt n. 文献,资料,文件75. double a. 两倍的,成双的33. case n. 情况,场合76. lower a. 下部的,低级的34. source n. 源,电源,源点77. cou nt v. 计数,计算35. assig n vt. 赋值,指定,分派78. pop v. 上托,弹出(栈)36. update v. 更新,修改,校正79. valid a. 有效的37. updated a. 适时的,更新的80. greater tha n 大于38. recall vt. 撤消,复活,检索81. comme nt n .& vi. 注解,注释39. deleti on n. 删去(部分),删除82. reorder v.( 按序)排列,排序40. amou nt vt. & n. 总计;合计83. direct a. 直接的41. alias n. 别名,代号,标记84. programming n. 程序设计,编程序42. quote n. & v . 引号;加引号85. upper a. 上的,上部的43. correct a. & vt. 正确的;改正86. row n. 行87. boundary n. 边界,界限,约束 131. in teger n. 整数88. in itialize v. 初始化 132. in tegrate v. 综合,集成 89. pers onal a. 个人的,自身的 133. subscript n. 注脚,下标 90. con vert v. 转换,变换 134. limit n. 极限,限界 91. global n. 全局,全程,全局符 135. colo n n. 冒号“:” 92. in voke vt. 调用,请求136. avoid vt.避免,取消,无效93. in teractive a. 交互式,交互的 137. range n.范围,域,区域 94. rather ad. 宁可,有点 138.sum n. 禾口,合计,总额95. marker n. 记号,标记,标志 139. achieve vt. 完成,实现 96. receive v. 接收140. affect vt. 影响,改变,感动 97. equivale nt a. 相等的,等效的 141. delay v. 延迟98. storage n. 存储,存储器 142. modifier n.修改量,变址数 99. width n. 宽度143. in valid a. 无效的100. startup n. 启动144. compiler n.编译程序(器) 101. accord ing to a. 按照,根据145. dot n.点102. ide ntify v. 识别,辨认 146. explai n v. 阐明,解释103. month n. 月份 147. con verted a. 转换的,变换的104. mistake n.错误148. expla nati on n .说明,注解,注 105. produce v.生产,制造 释106. ram 随机存取存储器 149. certa in a. 确实的,确定的 107. digit n.数字,位数,位150. ran dom a. 随机的108. mi nimum n & a.最小(的),最低 151. image n. 图像,影像,映像109. en ough a. & ad.足够的,充足的 152. mai nta in vt. 维护,保养,保留 110. rein dex v. & n.变换(改变)符号153. gather n. 聚集,集合111. third a. & n. 第三,三分之一 154. cycle n. & v. 周,周期;循环 112. red a. & n. 红色(的) 155. ending n. 结束113. test n. & v. 测试156. remember v. 存储,记忆,记住 114. address vt. & n. 寻址;地址157. exam ine v.检验,考试,审查115. pause vi. 暂停158. lead ing n. & a i.弓1导(的) 116. entry n. 输入,项(目),入口 159. han dle n. 处理,句柄 117. symbol n. 符号,记号160. sta nd v. 处于(状态),保持118. bi nary n. & a. 二进制;双态的 161. moveme nt n. 传送,移动119. associated a. 联合的,相联的 162. backgrou nd n .背景,底色,基 120. tran sfer v. 传送,转换,转移 础121. connect v. 连接163. assig nment n . 赋值,分配 122. gen erate vt . 产生,发生,生成 164. recog nize v. 识别 123. n est v.嵌套,后进先出165. route n. 路线,路由124. inten sity n. 强度,亮度166. received a. 被接收的,公认的 125. horiz on tally ad. 水平地 167. alter v.改变,修改126. backspace v. 退格,回退 168. replaceable a . 可替换的 127. termi nate v 端接,终止 169. semico lon n. 分号(;) 128. correctly ad . 正确地 170. overwrite v. 重写 129. in itially ad. 最初,开头 171. border n. 边界,框,界限 130.reformat v.重定格式172. cache n.高速缓存173. fastback n. 快速返回212. lowest a. 最低的,最小的174. substitute v. 代替,替换,代213. capitalized a. 大写的入214. plain n. 明码175. disabled a. 禁止的,报废的215. substituti on n. 代替,替换,176. han dler n. 处理程序置换177. processor n. 处理机,处理程序216. quotati on n. 引证,引用(句)178. exceed v. 超过,大于217. parse vt.( 语法)分析179. reserve vt. 保留,预定,预约218. mismatch n & vt.失配,不匹配180. icon n. 图符,象征219. pri ntout n. 印出181. calculati on n. 计算,统计,估220. ellipsis n.省略符号,省略计(法)182. process ing n (数据)处理,加221. pattern n. 模式工222. parallel a. 并行183. obtain v. 获得,得到223. impleme nt n. & vt. 工具;执184. recursive a. 递归的,循环的行,实现185. assist v. & n. 加速,帮助224. deal v. 处理,分配,交易186. volume n. 卷,册,体积,容量225. real n. 实数,实的,实型187. debugger n. 调试程序226. n egate vt. 否定,求反,“非”188. divisio n n. 除,除法,(程序)227. roll n. & v. 案卷;卷动,滚动部分228. exp onent n. 指数,阶,幕189. con sta nt n. 常数229. exp onen tial a. 指数的,幕的,190. trigger n. & v 触发器;触发阶的191. han dli ng n. 处理,操纵230. comma n. 逗号“,”,逗点192. usage n. 应用,使用,用法231. unm arked a . 没有标记的193. whole a. 全部的,整个的232. in directly adv. 间接地194. conn ecti on n 连接(法)233. equati on n. 方程,方程式195. preserve vi. 保存,维持234. attached a. 附加的196. dyn amic a. 动态的,动力的235. average n. 平均,平均数197. stati onary a. 静止的,平稳的236. discard v. 删除,废除,放弃198. circle n. 圆,圈,循环,周期237. defi nable a. 可定义的,可确定199. detect vt. 检测的200. cou nter n. 计数器,计算器238. procedural a. 程序上的201. subrouti ne n. 子程序239. in defi nitely adv. 无限地,无202. bracketed a. 加括号的穷地203. man ually adv. 用手,手动地240. major a. 较大的,主要的204. auto in dex n. 自动变址(数)241. assemble v. 汇编,装配205. restrict vt. 约束,限制242. assembler r . 汇编程序206. repeatedly adv. 重复地243. arithmetic n 算术,运算207. limitati ons n. 限制,边界244. vary ing a. 变化的,可变的208. rema in der n. 余数,余项,剩余245. caret n. 插入符号209. result ing a. 结果的,合成的246. stated a. 规定的210. in dex ing n. 变址,标引,加下247. protocol n. 规约,协议,规程标248. prese nee n. 存在,有in serti on n. 插入,嵌入,插页249. alphabet n. 字母,字母表211.250. subgroup n. 分组,子群251. repeati ng n. 重复,循环252. repetitive a. 重复的253. ree nter v 重新进入254. rearra nge v. 重新整理,重新排序255. operator n. 操作员,运算符256. un sig ned a. 无符号的257. un formatted a. 无格式的258. infin ite a. 无限的,无穷的259. multiprocess ing n. 多重处理,如有侵权请联系告知删除,感谢你们的配合!多道处理260. outcome n. 结果,成果,输岀261. labeled a . 有标号的262. con seque ntly ad. 因此,从而263. aid n. 帮助,辅助程序264. in crementn. 增量,加1,递增265. n umerical a. 数量的,数字的266. combo n. . 二进位组合码267. sta ndard 标准,水准,规范,基座268. active 活泼的,活跃的;积极的,作用的269. application 应用,应用程序333.manager经理,当家人270. setup 设置271. con st co nst 是一个C语言的关键字,它限定一个变量不允许被改变。

编程常用英文词汇

编程常用英文词汇
(类型的)系
feasible
可行的
feature
特色
field
字段
栏位
file
文件
file handle
文件句柄
fill pointer
填充指针
fineo-grained
细粒度
firmware
固件
first-class
第一类的
第一级的
一等的
first-class function
第一级函数
第一类函数
自动内存管理
automatically infer
自动推导
autometa theory
自动机理论
auxiliary
辅助
B
英文
译法1
译法2
译法3
backquote
反引用
backtrace
回溯
backward compatible
向下兼容
bandwidth
带宽
base case
基本情形
base class
font
字体
force
迫使
form
形式
form
表单
formal parameter
形参
formal relation
形式关系
forward
转发
forward references
fractal
分形
fractions
派系
framework
框架
freeware
自由软件
function
函数
function literal
应用程序编程接口
application service provider, ASP

计算机编程的专业英语单词

计算机编程的专业英语单词

计算机编程的专业英语单词aggregation 聚合、聚集algorithm 算法alias 别名align 排列、对齐allocate 分配、配置allocator分配器、配置器angle bracket 尖括号annotation 注解、评注API (Application Programming Interface) 应用(程序)编程接口app domain (application domain)应用域application 应用、应用程序application framework 应用程序框架appearance 外观append 附加architecture 架构、体系结构archive file 归档文件、存档文件argument引数(传给函式的值)。

参见parameterarray 数组arrow operator 箭头操作符ASP(Active Server Page)活动服务器页面 worker process 工作者进程assembly 装配件、配件assembly language 汇编语言assembly manifest 装配件清单assert(ion) 断言assign 赋值assignment 赋值、分配assignment operator 赋值操作符associated 相关的、相关联的associative container 关联式容器(对应sequential container) asynchronous 异步的atomic 原子的atomic operation 原子操作attribute 特性、属性authentication service 验证服务authorization 授权audio 音频A.I. 人工智能B2B integration B2B整合、B2B集成(business-to-business integration) background 背景、后台(进程)backward compatible 向后兼容、向下兼容backup device备份设备backup file 备份文件bandwidth 带宽base class 基类base type 基类型batch 批处理BCL (base class library)基类库binary 二进制binary search 二分查找binary tree 二叉树binary function 双参函数binary large object二进制大对象binary operator 二元操作符binding 绑定bit 位bitmap 位图bitwise 按位...bitwise copy 为单元进行复制;位元逐一复制,按位拷bitwise operation 按位运算block 块、区块、语句块bookkeeping 簿记boolean 布林值(真假值,true或false)border 边框bounds checking 边界检查boxing 装箱、装箱转换brace (curly brace) 大括号、花括号bracket (square brakcet) 中括号、方括号breakpoint 断点browser applications 浏览器应用(程序)browser-accessible application 可经由浏览器访问的应用程序build 编连(专指编译和连接built-in 内建、内置bus 总线business 业务、商务(看场合)business Logic 业务逻辑business rules 业务规则buttons 按钮bug 臭虫by/through 通过byte 位元组(由8 bits组成)cache 高速缓存call 调用callback 回调call-level interface (CLI)调用级接口(CLI)call operator 调用操作符candidate key 候选键(for database)cascading delete 级联删除(for database)cascading update 级联更新(for database)casting 转型、造型转换catalog 目录chain 链(function calls)character 字符character format 字符格式character set 字符集CHECK constraints CHECK约束(for database)checkpoint 检查点(for database)check box 复选框check button 复选按钮child class 子类CIL (common intermediate language)通用中间语言、通用中介语言class 类class declaration 类声明class definition 类定义class derivation list 类继承列表class factory 类厂class hierarchy 类层次结构class library 类库class loader 类装载器class template 类模板class template partial specializations 类模板部分特化class template specializations 类模板特化classification 分类clause 子句client application 客户端应用程序client cursor 客户端游标(for database)code page 代码页cleanup 清理、清除CLI (Common Language Infrastructure) 通用语言基础设施client 客户、客户端client area 客户区client-server 客户机/服务器、客户端/服务器clipboard 剪贴板clone 克隆CLS (common language specification) 通用语言规范code access security 代码访问安全COFF (Common Object File Format) 通用对象文件格式collection 集合COM (Component Object Model) 组件对象模型combo box 组合框command line 命令行comment 注释commit 提交(for database)communication 通讯compatible 兼容compile time 编译期、编译时compiler 编译器component组件composite index 复合索引、组合索引(for database)composite key 复合键、组合键(for database)composition 复合、组合concept 概念concrete具体的concrete class 具体类concurrency 并发、并发机制constraint 约束(for database)configuration 配置、组态connection 连接(for database)connection pooling 连接池console 控制台constant 常量construct 构件、成分、概念、构造(for language)constructor (ctor) 构造函数、构造器container 容器containment包容context 环境、上下文control 控件cookie (不译)copy 拷贝CORBA 通用对象请求中介架构(Common Object Request Broker Architecture) cover 覆盖、涵盖create/creation 创建、生成crosstab query 交叉表查询(for database)CRTP (curiously recurring template pattern)CTS (common type system)通用类型系统cube 多维数据集(for database)cursor 光标cursor 游标(for database)custom 定制、自定义data 数据data connection 数据连接(for database)Data Control Language (DCL) 数据控制语言(DCL) (for database)Data Definition Language (DDL) 数据定义语言(DDL) (for database) data dictionary 数据字典(for database)data dictionary view 数据字典视图(for database)data file 数据文件(for database)data integrity 数据完整性(for database)data manipulation language (DML)数据操作语言(DML) (for database) data mart 数据集市(for database)data pump 数据抽取(for database)data scrubbing 数据清理(for database)data source 数据源(for database)Data source name (DSN) 数据源名称(DSN) (for database)data warehouse 数据仓库(for database)dataset 数据集(for database)database 数据库(for database)database catalog 数据库目录(for database)database diagram 数据关系图(for database)database file 数据库文件(for database)database object 数据库对象(for database)database owner 数据库所有者(for database)database project 数据库工程(for database)database role 数据库角色(for database)database schema 数据库模式、数据库架构(for database) database scrīpt 数据库脚本(for database)data-bound 数据绑定(for database)data-aware control数据感知控件(for database)data member 数据成员、成员变量dataset 数据集(for database)data source 数据源(for database)data structure数据结构data table 数据表(for database)datagram 数据报文DBMS (database management system)数据库管理系统(for database) DCOM (distributed COM)分布式COMdead lock 死锁(for database)deallocate 归还debug 调试debugger 调试器decay 退化decision support 决策支持declaration 声明declarative referential integrity (DRI)声明引用完整性(DRI) (for database)deduction 推导DEFAULT constraint默认约束(for database)default database 默认数据库(for database)default instance 默认实例(for database)default result set 默认结果集(for database)default 缺省、默认值defer 推迟definition 定义delegate 委托delegation 委托dependent namedeploy 部署dereference 解引用dereference operator (提领)运算子derived class 派生类design by contract 契约式设计design pattern 设计模式destroy 销毁destructor(dtor)析构函数、析构器device 设备DHTML (dynamic HyperText Markup Language)动态超文本标记语言dialog 对话框digest 摘要digital 数字的DIME (Direct Internet Message Encapsulation)直接Internet消息封装directive (编译)指示符directory 目录dirty pages脏页(for database)dirty read 脏读(for database)disassembler 反汇编器DISCO (Discovery of Web Services)Web Services的查找disk 盘dispatch 调度、分派、派发(我喜欢“调度”)DISPID (Dispatch Identifier)分派标识符distributed computing 分布式计算distributed query 分布式查询(for database)DNA (Distributed interNet Application) 分布式网间应用程序document 文档DOM (Document Object Model)文档对象模型dot operator (圆)点操作符driver 驱动(程序)DTD (document type definition) 文档类型定义double-byte character set (DBCS)双字节字符集(DBCS)dump 转储dump file 转储文件dynamic cursor 动态游标(for database)dynamic filter 动态筛选(for database)dynamic locking 动态锁定(for database)dynamic recovery 动态恢复(for database)dynamic snapshot 动态快照(for database)dynamic SQL statements 动态SQL语句(for database) dynamic assembly 动态装配件、动态配件dynamic binding 动态绑定EAI (enterprise application integration)企业应用程序集成(整合) EBCO (empty base class optimization) 空基类优化(机制)e-business 电子商务EDI (Dlectronic Data Interchange)电子数据交换efficiency 效率efficient 高效end-to-end authentication 端对端身份验证end user 最终用户engine 引擎entity 实体encapsulation 封装enclosing class 外围类别(与巢状类别nested class有关) enum (enumeration) 枚举enumerators 枚举成员、枚举器equal 相等equality 相等性equality operator 等号操作符error log 错误日志(for database)escape code 转义码escape character 转义符、转义字符exclusive lock 排它锁(for database)explicit transaction 显式事务(for database)evaluate 评估event 事件event driven 事件驱动的event handler 事件处理器evidence 证据exception 异常exception declaration 异常声明exception handling 异常处理、异常处理机制exception-safe 异常安全的exception specification 异常规范exit 退出explicit 显式explicit specialization 显式特化export 导出expression 表达式facility 设施、设备fat client 胖客户端feature 特性、特征fetch 提取field 字段(java)field 字段(for database)field length 字段长度(for database)file 文件filter 筛选(for database)finalization 终结firewall 防火墙finalizer 终结器firmware 固件flag 标记flash memory 闪存flush 刷新font 字体foreign key (FK) 外键(FK) (for database)form 窗体formal parameter 形参forward declaration 前置声明forward-only 只向前的forward-only cursor 只向前游标(for database) fragmentation 碎片(for database)framework 框架full specialization 完全特化function 函数function call operator (即operator ()) 函数调用操作符function object 函数对象function overloaded resolution函数重载决议functionality 功能function template函数模板functor 仿函数GAC (global assembly cache) 全局装配件缓存、全局配件缓存GC (Garbage collection) 垃圾回收(机制)、垃圾收集(机制) game 游戏generate 生成generic 泛化的、一般化的、通用的generic algorithm通用算法genericity 泛型getter (相对于setter)取值函数global 全局的global object 全局对象global scope resolution operator 全局范围解析操作符grant 授权(for database)granularity 粒度group 组、群group box 分组框GUI 图形界面GUID (Globally Unique Identifier) 全球唯一标识符hand shaking 握手handle 句柄handler 处理器hard-coded 硬编码的hard-copy 截屏图hard disk 硬盘hardware 硬件hash table 散列表、哈希表header file头文件heap 堆help file 帮助文件hierarchy 层次结构、继承体系hierarchical data 阶层式数据、层次式数据hook 钩子Host (application)宿主(应用程序)hot key 热键hyperlink 超链接HTML (HyperText Markup Language) 超文本标记语言HTTP pipeline HTTP管道HTTP (HyperText Transfer Protocol) 超文本传输协议icon 图标IDE (Integrated Development Environment)集成开发环境IDL (Interface Definition Language) 接口定义语言identifier 标识符idle time 空闲时间if and only if当且仅当IL (Intermediate Language) 中间语言、中介语言image 图象IME 输入法immediate base 直接基类immediate derived 直接派生类immediate updating 即时更新(for database)implicit transaction隐式事务(for database) incremental update 增量更新(for database)index 索引(for database)implement 实现implementation 实现、实现品implicit 隐式import 导入increment operator 增加操作符infinite loop 无限循环infinite recursive 无限递归information 信息infrastructure 基础设施inheritance 继承、继承机制inline 内联inline expansion 内联展开initialization 初始化initialization list 初始化列表、初始值列表initialize 初始化inner join 内联接(for database)in-place active 现场激活instance 实例instantiated 具现化、实体化(常应用于template) instantiation 具现体、具现化实体(常应用于template) integrate 集成、整合integrity 完整性、一致性integrity constraint完整性约束(for database) interprocess communication (IPC)进程间通讯(IPC) interacts 交互interface 接口for GUI 界面interoperability 互操作性、互操作能力interpreter 解释器introspection 自省invariants 不变性invoke 调用isolation level 隔离级别(for database)iterate 迭代iterative 反复的、迭代的iterator 迭代器iteration 迭代(回圈每次轮回称为一个iteration)item 项、条款、项目JIT compilation JIT编译即时编译key 键(for database)key column 键列(for database)laser 激光late binding 迟绑定left outer join 左向外联接(for database)level 阶、层例high level 高阶、高层library 库lifetime 生命期、寿命link 连接、链接linkage 连接、链接linker 连接器、链接器literal constant 字面常数list 列表、表、链表list box 列表框livelock 活锁(for database)load 装载、加载load balancing 负载平衡loader 装载器、载入器local 局部的local object 局部对象lock 锁log 日志login 登录login security mode登录安全模式(for database)lookup table 查找表(for database)loop 循环loose coupling 松散耦合lvalue 左值machine code 机器码、机器代码macro 宏maintain 维护managed code 受控代码、托管代码Managed Extensions 受控扩充件、托管扩展managed object 受控对象、托管对象mangled namemanifest 清单manipulator 操纵器(iostream预先定义的一种东西)many-to-many relationship 多对多关系(for database)many-to-one relationship 多对一关系(for database)marshal 列集member 成员member access operator 成员取用运算子(有dot和arrow两种) member function 成员函数member initialization list成员初始值列表memberwise 以member为单元…、members 逐一…memberwise copymemory 内存memory leak 内存泄漏menu 菜单message 消息message based 基于消息的message loop 消息环message queuing消息队列metadata 元数据metaprogramming元编程method 方法micro 微middleware 中间件middle tier 中间层modeling 建模modeling language 建模语言modifier 修饰字、修饰符modem 调制解调器module 模块most derived class最底层的派生类mouse 鼠标mutable 可变的mutex 互斥元、互斥体multidimensional OLAP (MOLAP) 多维OLAP(MOLAP) (for database) multithreaded server application 多线程服务器应用程序multiuser 多用户multi-tasking 多任务multi-thread 多线程multicast delegate 组播委托、多点委托named parameter 命名参数named pipe 命名管道namespace 名字空间、命名空间native 原生的、本地的native code 本地码、本机码Native Image Generator (NGEN)本地映像生成器nested class 嵌套类nested query 嵌套查询(for database)nested table 嵌套表(for database)network 网络network card 网卡nondependent nameobject 对象object based 基于对象的object file 目标文件object model 对象模型object oriented 面向对象的object pooling 对象池化ODBC data source ODBC数据源(for database)ODBC driver ODBC驱动程序(for database)ODR (one-definition rule)OLE Automation objects OLE自动化对象(for database)OLE Automation server OLE自动化服务器(for database)OLE DB consumer OLE DB使用者(for database)OLE DB for OLAP 用于OLAP的OLE DB (for database)OLE DB provider OLE DB提供者(for database)one-to-many relationship 一对多关系(for database)one-to-one relationship 一对一关系(for database)online analytical processing (OLAP) 联机分析处理(OLAP) (for database) online redo log 联机重做日志(for database)online transaction processing (OLTP) 联机事务处理(OLTP) (for database) Open Data Services (ODS) 开放式数据服务(ODS) (for database)Open Database Connectivity (ODBC) 开放式数据库连接(ODBC) (for database) operand 操作数operating system (OS) 操作系统operation 操作operator 操作符、运算符option 选项optimizer 优化器outer join 外联接(for database)overflow 上限溢位(相对于underflow)overhead 额外开销overload 重载overload resolution 重载决议overloaded function 重载的函数overloaded operator 被重载的操作符override 覆写、重载、重新定义package 包packaging 打包palette 调色板parallel 并行parameter 参数、形式参数、形参parameter list 参数列表parameterize 参数化parent class 父类parentheses 圆括弧、圆括号parse 解析parser 解析器part 零件、部件partial specialization 局部特化pass by address 传址(函式引数的传递方式)(非正式用语)pass by reference 传地址、按引用传递pass by value 按值传递pattern 模式PDA (personal digital assistant)个人数字助理PE (Portable Executable) file 可移植可执行文件performance 性能persistence 持久性PInvoke (platform invoke service) 平台调用服务pixel 像素placement deleteplacement newplaceholder 占位符platform 平台POD (plain old data (type))POI (point of instantiation)pointer 指针poll 轮询pooling 池化polymorphism 多态pop up 弹出式port 端口postfix 后缀precedence 优先序(通常用于运算子的优先执行次序) prefix 前缀preprocessor 预处理器primary key (PK)主键(PK) (for database)primary table 主表(for database)primary template原始模板primitive type 原始类型print 打印printer 打印机procedure 过程procedural 过程式的、过程化的process 进程profile 评测profiler 效能(性能)评测器program 程序programmer 程序员programming编程、程序设计progress bar 进度指示器project 项目、工程property 属性protocol 协议pseudo code伪码qualified 经过资格修饰(例如加上scope运算子) qualifiedqualifier 修饰符quality 质量queue 队列race condition 竞争条件(多线程环境常用语)radian 弧度radio button 单选按钮raise 引发(常用来表示发出一个exception) random number 随机数range 范围、区间rank 等级raw 未经处理的readOnly只读record 记录(for database)recordset 记录集(for databaserecursive 递归re-direction 重定向refactoring 重构refer 引用、参考reference 引用、参考reference counting引用计数referential integrity (RI)引用完整性(RI) (for database) register 寄存器reflection 反射refresh data 刷新数据(for database)regular expression 正则表达式relational database 关系数据库remote 远程remote request 远程请求represent 表述,表现resolve 解析、决议resolution 解析过程result set 结果集(for database)retrieve data 检索数据return 返回return type 返回类型return value 返回值right outer join 右向外联接(for database)revoke 撤销robust 健壮robustness 健壮性roll back 回滚(for database)roll forward 前滚(for database)routine 例程row 行(for database)row lock 行锁(for database)rowset 行集(for database)RPC (remote procedure call)RPC(远程过程调用) runtime 执行期、运行期、执行时、运行时rvalue 右值save 保存savepoint 保存点(for database)SAX (Simple API for XML)scalable 可伸缩的、可扩展的schedule 调度scheduler 调度程序schema 模式、纲目结构scroll bar滚动条scope 作用域、生存空间scope operator 生存空间操作符scope resolution operator 生存空间解析操作符screen 屏幕SDK (Software Development Kit)软件开发包sealed class 密封类search 查找semantics 语义semaphore 信号量sequential container序列式容器server 服务器、服务端serial 串行serialization/serialize 序列化server cursor服务端游标、服务器游标(for database) session 会话(for database)setter 设值函数shared lock 共享锁(for database)sibling 同级side effect 副作用signature 签名single-threaded 单线程slider滑块slot 槽smart pointer 智能指针SMTP (Simple Mail Transfer Protocol) 简单邮件传输协议snapshot 截屏图snapshot 快照(for database)specialization 特化specification 规范、规格splitter 切分窗口SOAP (simple object access protocol) 简单对象访问协议software 软件source code 源码、源代码SQL (Structured Query Language) 结构化查询语言(for database) stack 栈、堆栈stack unwinding 叠辗转开解(此词用于exception主题) standard library 标准库standard template library 标准模板库stateless 无状态的statement 语句、声明static cursor 静态游标(for database)static SQL statements 静态SQL语句(for database)stored procedure 存储过程(for database)status bar 状态条stream 流string 字符串stub 存根subobject子对象subquery 子查询(for database)subroutine 子例程subscrīpt operator 下标操作符subset 子集subtype 子类型support 支持suspend 挂起symbol 记号syntax 语法system databases 系统数据库(for database)system tables 系统表(for database)table 表(for database)table lock 表锁(for database)table-level constraint 表级约束(for database)tape backup 磁带备份(for database)target 标的,目标task switch 工作切换TCP (Transport Control Protocol) 传输控制协议template 模板template-idtemplate argument deduction 模板参数推导template explicit specialization 模板显式特化template parameter 模板参数template template parametertemporary object 临时对象temporary table 临时表(for database)text 文本text file 文本文件thin client 瘦客户端third-party 第三方thread 线程thread-safe 线程安全的throw 抛出、引发(常指发出一个exception)token 符号、标记、令牌(看场合)trace 跟踪transaction 事务(for database)transaction log 事务日志(for database)transaction rollback 事务回滚(for database)transactional replication 事务复制(for database)translation unit 翻译单元traverse 遍历trigger 触发器(for database)two-phase commit 两阶段提交(for database)tupletwo-phase lookup 两阶段查找type 类型UDDI(Universary Descrīption, Discovery and Integration)统一描述、查询与集成UML (unified modeling language)统一建模语言unary function 单参函数unary operator 一元操作符unboxing 拆箱、拆箱转换underflow 下限溢位(相对于overflow)Union query 联合查询(for database)UNIQUE constraints UNIQUE约束(for database)unique index 唯一索引(for database)unmanaged code 非受控代码、非托管代码unmarshal 散集unqualified 未经限定的、未经修饰的URI (Uniform Resource identifier) 统一资源标识符URL (Uniform Resource Locator) 统一资源定位器user 用户user interface 用户界面value types 值类型variable 变量vector 向量(一种容器,有点类似array)viable 可行的video 视频view 视图VEE (Virtual Execution Engine)虚拟执行引擎vendor 厂商view 视图(for database)virtual function 虚函数virtual machine 虚拟机virtual memory 虚拟内存vowel 元音字母Web Services web服务WHERE clause WHERE子句(for database)wildcard characters 通配符字符(for database)wildcard search 通配符搜索(for database)window 窗口window function 窗口函数window procedure 窗口过程Windows authentication Windows身份验证wizard 向导word 单词word processor 字处理器wrapper 包装、包装器write enable 写启用(for database)write-ahead log 预写日志(for database)write-only 只写WSDL (Web Service Descrīption Language)Web Service描述语言XML Message Interface (XMI) XML消息接口XML (eXtensible Markup Language) 可扩展标记语言XSD (XML Schema Definition) XML模式定义语言XSL (eXtensible Stylesheet Language) 可扩展样式表语言XSLT (eXtensible Stylesheet Language Transformation)可扩展样式表语言转换xxx based 基于xxx的xxx oriented 面向xxx。

编程中常用的英文单词

编程中常用的英文单词

编程中常用的英文单词1. category [?k?t?g?ri]n.类型,部门,种类,类别,类目;[逻,哲]范畴;体重等级2. Expertabbr.Expanded Pert (program evaluation and reviewtechnique) 性能评价审查技术3. verbose [v??b??s]adj.冗长的,啰唆的,累赘的adv.冗长地,啰唆地,累赘地4. demo ['dem??]n.演示;示威;样本唱片;民主党员5. manifest ['m?n?fest]vt.显示,表明;证明;使显现adj.明白的,明显的n.货单,旅客名单6. application [??pl??ke??n]n.适用,应用,运用;申请,请求,申请表格;勤勉,用功;敷用,敷用药7. activity [?k't?v?t?]n.活动;活跃,敏捷;活动力;教育活动8. filter ['f?lt?(r)]n.滤波器;滤光器;滤色镜;[化] 过滤器vi.过滤;透过;渗透vt.过滤;滤除9. intent [?n?tent]n.意图,目的;意思,含义adj.专心的,专注的;意愿坚决的;急切的;一心想…的10. receive [r?'si:v]vt.& vi.收到;接到;接纳;接待vt.接收;受理;欢迎;承受vi.接到,获得;接见,欢迎;[电子学] 接收;[橄榄球] 接球11. component [k?m?p?un?nt]n. 成分;零件;[数]要素;组分;adj. 组成的;合成的;构成的;成分的12. detailed [?di:te?ld]adj.详细的,明细的;精细的;复杂的;详尽的v.详细说明(detail的过去分词) 13. confusion [k?n?fju:??n]n. 混乱;混淆;困惑14. Lifecycle ['la?f?sa?kl]n.生命周期,生活周期15. Notification[?n??t?f??ke??n]n.通知;通知单;布告;公布16. IPCabbr.Interprocess Communication 进程间通信IPC信息技术有限公司,总部设于新加坡,信息技术公司(UNIX)进程间通讯17. Intent [in?tent]n. 意图,目的;意思,含义;adj. 专心的,专注的;意愿坚决的;急切的;一心想…的18. emulator [?emjule?t?(r)]n.仿真器;仿真程序19. configure [k?n'f?g?]v.配置;设定;使成形;使具一定形式20. final [?fain?l]adj. 最后的,最终的;决定性的;不可更改的;n. 结局;决赛;期末考试;〈口〉(报纸的)末版21. runnable ['r?n?bl]adj.可追捕的,可猎取的22. Constructors [k?nst'r?kt?z]n.构造器( constructor的名词复数) 23. Session [?se??n]n. 开会,会议;(法庭的)开庭;会期,学期;(进行某活动连续的)一段时间24. hibernate ['ha?b?ne?t]vi.(某些动物)冬眠,蛰伏25. 通讯录[计] address list 26. Default [di?f?:lt]vi. 未履行任务或责任;受传唤时未出庭;由于不到庭而败诉;弃权;vt. 未履行,拖欠;未参加或完成(例如,比赛);[法]因未到庭而败(诉);n. 未履行,拖欠;[法]未到庭;弃权;[计] 缺省,默认27. Buffer ['b?f?(r)]n.缓冲器;起缓冲作用的人(或物);[化]缓冲液,缓冲剂;[计]缓冲区vt.缓冲;[化]把缓冲液加入(溶液)28. Opacity [??'p?s?t?]n.不透明性;费解;难懂;模糊29. Padding [?p?d??]n.衬料;衬垫;赘语;废话v.给…装衬垫,加垫子(pad的现在分词);步行,放轻脚步走30. Grip [ɡrip]n. 紧握,抓牢;握力;掌握,理解;能力,胜任;vt. 握紧,抓牢;吸引住:吸引…的兴趣或注意力;引起;vi. 抓牢,紧握:保持紧握31. Tag [t?ɡ]vt. 加标签于;附加;起诉;紧跟;vi. 跟在…后面;随从;n. 标签;(鞋带等末端的)金属或塑料包头;结束语;附属物32. Transparency [tr?ns'p?r?ns?]n.透明;透明度;透明性;透明的东西33. Cursor [?k?:s?]n.光标34. furniture [?f?:n?t??(r)]n.家具;设备;附属品35. initializer [?'n???la?z?]初始程序,初始化程序36. redisabbr.Redistricting System 重划学区系统37. enum列举型别38. client ['kla??nt]n.顾客;当事人;诉讼委托人;[计算机]客户端39. develop [d?'vel?p]vi.发展;生长;形成;发达vt.使发展;使发育;开发;培育40. Professional奇谋杀手;终极追杀令41. dump [d?mp]vt.倾倒;丢下,卸下;摆脱,扔弃;倾销vi.突然跌倒或落下;卸货;转嫁(责任等)n.垃圾场;仓库;无秩序地累积42. EXPIRE [iks?pai?]vi. 期满;文件、协议等(因到期而)失效;断气;逝世43. echo ['ek??]n.回声,共鸣;(言语、作风、思想等的)重复;重复者;[无线电]回波vt.重复,效仿;随声附和;类似;发射(声音等)vi.被重复;产生回响;充满回声44. SHALL [??l]aux.将要;必须;可以;应该45. nil [n?l]n.无,零;零分46. attempt [?'tempt]vt.试图;尝试;试图夺取或攻克(堡垒、要塞等);试图征服(高山)n.进攻;(尤指)企图杀害47. Unrecognized[?n?rek?gna?zd]adj.未被承认的48. Compact[k?m?p?kt]vt.& vi. 压紧,(使)坚实;把…弄紧密,把…弄结实;使(文体)简洁,简化;变紧密,变结实;adj. 紧凑的;简洁的,(文体等)紧凑的;小巧易携带的;(物质)致密的,(体格)结实的n. 协议;条约;带镜小粉盒;小汽车49. Authentication [?:?θent?'ke??n]n.证明,鉴定;身份验证;认证;密押50. Constructor [k?n?str?kt?(r)]n.构造器51. summary ['s?m?r?]n.摘要,概要;总结,一览adj.概括的,总结的;即刻的,立即的52. multi ['m?lti]abbr.(Latinprefix=many or much) (拉丁语前缀)许多;V on Willebrand factor multimer analysis 血友病因子多聚体分析(代号);[计][微软]复选;[土木]多级管网系统;[大气]多波段图象;[机]多层波纹管53. eval ['i:vl][医]evaluate 评价54. Pascal [?p?sk?l]帕斯卡(Blaise,1623-1662,法国数学家、物理学家、哲学家)[人名] 帕斯卡尔55. camel ['k?ml]n.骆驼;[造船](打捞用的)浮筒;工作作风官僚;[航海学]码头边的木靠把56. Attribute ['?tr?bju:t]vt.认为…是;把…归于;把…品质归于某人;认为某事[物]属于某人[物]n.属性;(人或物的)特征;价值;[语法学]定语57. Install [in?st?:l]vt. 安装;安顿,安置;任命;使…正式就职58. solution [s??lu:?n]n.解决;溶解;溶液;答案59. COOKING [?k?k??]n.烹饪术;如火如荼地进行;热火朝天;在干什么adj.烹调用的(水果,锅,炉等)v.烹调( cook的现在分词);编造;篡改;密谋60. element['el?m?nt]n.[化]元素;要素;原理;[电]电阻丝61. Maintenance [?meintin?ns]n. 维持,保持;保养,保管;维护;维修62. Interaction [??nt?r??k??n]n. 一起活动;合作;互相影响;互动63. Extension [iks?ten??n]n. 伸展,扩大;延长,延期;[医]牵引;电话分机64. Proposed [pr??'p??zd]adj.被提议的,所推荐的v.提议,建议( propose的过去式和过去分词);打算;提供(解释);提出(行动,计划或供表决的方案等)65. primary [?praim?ri]adj. 首要的,主要的;最早的,原始的;[地质学]原生的;基本的;n. 第一位;最好者;要素;候选人提拔会66. Entity ['ent?t?]n.实体;实际存在物;本质67. operate ['?p?re?t]vt.& vi.运转;操作;经营;管理vi.开刀;(对…)动手术;动手术;(在某地)采取军事行动vt.操作,控制,使运行68. select [s?'lekt]vt.选择;挑选;选拔adj.精选的;挑选出来的;苛择的;〈口〉爱挑三拣四的,挑剔的69. generalize ['d?enr?la?z]vt.& vi.概括,归纳;推广,普及;使一般化;形成概念vt.推广,普及;使一般化;概括vi.形成概念70. compose [k?m?p??z]vt.组成,构成;调解;[印刷]排(字);使安定vt.& vi.创作(乐曲、诗歌等);为…谱曲vi.构图,构成71. realize ['ri:?la?z]vt.实现;了解;(所担心的事)发生;以…价格卖出vt.& vi.变卖,赚得72. general ['d?enr?l]adj.大致的;综合的;总的,全体的;普遍的n.上将;一般;一般原则;常规73. include [?n?klu:d]vt.包括;包含;计入;包住74. Hash[人名] 哈什75. partial [?p ɑ:??l]adj.部分的;偏爱的;偏袒的;钟爱的n.[数学]偏微商76. Route [ru:t]n. 路;(公共汽车和列车等的)常规路线;航线;渠道,途径;vt. 按某路线发送;给…规定路线[次序,程序] 77. Ignore [iɡ?n?:]vt. 忽视,不顾;[法律]驳回(诉讼)78. parameter [p??r?m?t?(r)]n.[数]参数;物数参量;限制因素;决定因素79. Properties [p'r?p?t?z]n.房地产(property的名词复数);财产;所有权;特性80. Reference [?refr?ns]n. 参考;参考书;提及,涉及;证明人,介绍人;v. 引用;参照81. Config [k?n'f?g]配置82. Enumerable [?'nju:m?r?b?l]adj.可点数的,可列举的83. Collection [k??lek??n]n. 收集,采集;征收;收藏品;募捐84. util [j?'t?l]n.跑龙套85. config [k?n'f?g]配置86. development [di?vel?pm?nt]n. 发展,进化;被发展的状态;新生事物,新产品;开发区87. region ['ri:d??n]n.地区,地域,地带;行政区,管辖区;(大气,海水等的)层,界,境;(学问等的)范围,领域88. release [ri?li:s]vt. 释放;放开;发布;发行;n. 释放,排放,解除;释放令;公映的新影片,发布的新闻[消息] 89. brand [br?nd]n.[商]商标,牌子;烙印;〈比喻〉污名,耻辱;燃烧着的木头vt.污辱;铭刻于;加商标于;打烙印于90. note [n??t]n.注意;笔记;注解;便条vt.注意;记录;对…加注释;指出91. prepare [pr?'pe?(r)]vt.准备;预备(饭菜);配备;使(自己)有准备vt.& vi.筹备,进行各项准备工作;做好思想准备;作出,制订;锻炼(身体等),训练92. Format ['f?:m?t]n.(出版物的)版式;[自](数据安排的)形式;电视节目的总安排(或计划)vt.使格式化;安排…的格局;设计…的版面vi.设计一个版式93. require[r?'kwa??(r)]vt.要求;需要;想要;命令vi.要求,规定94. request [r?'kwest]n.要求;需要;所请求的事物;申请书vt.(下级对上级的)请求;请求得到;索取;邀请[常接不定式或从句] 95. experiences [iks?pi?ri?nsiz]n.经历( experience的名词复数);经验;亲身经历;传统96. friendliness['frendl?n?s]n.友情,亲切,友善97. dictionary [?dik??n?ri]n. 词典,字典;[自]代码字典98. infrastructure ['?nfr?str?kt??(r)]n.基础设施;基础建设99. enterprise [?ent?praiz]n. 企(事)业单位;事业,计划;事业心,进取心100. gigantic [d?ai?ɡ?ntik]adj. 巨大的,庞大的;巨人似的;硕大无朋;排山倒海101. Asynchronous [e??s??kr?n?s]adj.异步的102. sync [s??k]n.同时,同步103. responsible [r?'sp?ns?bl]adj.尽责的;承担责任;负有责任的;懂道理的104. format ['f?:m?t]n.(出版物的)版式;[自](数据安排的)形式;电视节目的总安排(或计划)vt.使格式化;安排…的格局;设计…的版面vi.设计一个版式105. Specification [?spesifi?kei??n]n. 规格;详述;说明书106. Swagger ['sw?ɡ?(r)]vi.昂首阔步;夸耀,炫耀vt.恐吓或欺负(某人)n.昂首阔步;吹嘘,自大adj.〈口〉漂亮的;时髦的107. impatient [im?pei??nt]adj. 不耐烦的;热切的,渴望的;不能容忍的,恼火的108. convention[k?n?ven??n]n. 会议;全体与会者;国际公约;惯例,习俗,规矩109. DEFAULT [di?f?:lt]vi. 未履行任务或责任;受传唤时未出庭;由于不到庭而败诉;弃权;vt. 未履行,拖欠;未参加或完成(例如,比赛);[法]因未到庭而败(诉);n. 未履行,拖欠;[法]未到庭;弃权;[计] 缺省,默认110. constant['k?nst?nt]adj.不断的,持续的;永恒的,始终如一的;坚定;忠实的n.[数]常数,常量;不变的事物;永恒值111. Parameter [p??r?mit?]n. [数]参数;<物><数>参量;限制因素;决定因素112. expression [?k'spre?n]n.表现,表示,表达;表情,脸色,态度,腔调,声调;[数]式,符号;词句,语句,措辞,说法113. Response [ri?sp?ns]n. 反应;回答,答复;[宗]回应经文,应唱圣歌114. Request [ri?kwest]n. 要求;需要;所请求的事物;申请书;vt. (下级对上级的)请求;请求得到;索取;邀请[常接不定式或从句] 115. portal ['p?:tl]n.入口;桥门;[解剖学]肝门;出孔adj.[解剖学]门的;肝门的;门静脉的;关于门静脉的116. Contractor [k?n?tr?kt?(r)]n.订约人,承包人;收缩物117. sealed [si:ld]adj.未知的,密封的v.密封( seal的过去式和过去分词);决定;确定;封上(信封)118. Assign [?'sa?n]vt.分派,选派,分配;归于,归属;[法律] 把(财产,权利、利息)从一人转让给另一人;把…编制n.[常用复数][法律]受让人,接受财产等转让的人,受托者119. Evaluation [??v?lj?'e??n]n.估价;数赋值;估计价值;[医学]诊断120. prop [pr?p]n.支柱,支撑物;支持者,后盾,靠山;道具;(橄榄球中的)支柱前锋vt.支撑,支持,维持;使倚靠在某物上121. reward [r?'w?:d]n.报酬;报答;赏金;酬金vt.酬谢,奖赏;报答,惩罚122. sort [s?:t]n.分类,类别;品质,本性;方法;一群vt.& vi.分类;整顿,整理;适合vt.挑选;把…分类;将…排顺序vi.分类;交往;协调123. integrate ['?nt?ɡre?t]vt.使一体化;使整合;使完整;使结合成为整体vi.成为一体;结合在一起;合并;[数学]作积分运算adj.整体的;完整的;完全的;综合的124. Implementation [??mpl?men'te??n]n.成就;贯彻;implement的变形;安装启用125. handler ['h?ndl?(r)]n.处理者,管理者;(动物)驯化者;[自](信息)处理机;拳击教练126. inherited[?n'her?t?d]adj.通过继承得到的,遗传的;继承权的v.继承( inherit的过去式和过去分词);经遗传获得(品质、身体特征等)接替(责任等),继任127. configuration[k?n?f?g??re??n]n.组合,布置;结构,构造;[化](分子中原子的)组态,排列;[物]位形,组态128. carer [?ke?r?(r)]n.(亲属中)护理病人、老人者129. catcher [?k?t??(r)]n.捕手,捕捉器;接球手;收集器;[化]接受器130. until [?n?t?l]prep.到…为止;在…以前conj.到…为止,在…以前;直到…才131. log [l?ɡ]n.记录;航海[飞行]日志;原木,木材;补给品的发放,补给品发放的日子vt.& vi.砍伐,伐木vt.把…记入航海日志;航行(…距离),飞行(…小时);向…提供补给品132. logger [?l?g?(r)]n.美樵夫;伐木工;记录器133. virtual [?v?:tju?l]adj. 实质上的,事实上的;(计算机)虚拟的;<物>有效的,虚像的;(粒子)实际存在的134. reference ['refr?ns]n.参考;参考书;提及,涉及;证明人,介绍人v.引用;参照135. nginx一个高性能的HTTP 和反向代理服务器,也是一个IMAP/POP3/SMTP 代理服务器136. provider [pr??va?d?(r)]n.供应者,提供者,(尤指)维持家庭生计者137. provide [pr?'va?d]vt.& vi.提供,供给,供应vt.规定;提供(+for);装备;预备vi.抚养,赡养(+for);做准备;预约(for 或against) 138. duration [dju?re??n]n.持续,持续的时间,期间;(时间的)持续,持久,连续;[语音学]音长,音延139. bulk [b?lk]n.(大)体积;大块,大量;大多数,大部分;主体vt.& vi.变得越来越大(或重要)vi.显得庞大;形成大块;堆积起来vt.使凝聚成一团或形成一堆adj.大批的,大量的;散装的140. register['red??st?(r)]n.登记,注册;记录;登记薄;自动记录器vt.登记,注册;(仪表等)指示;表示,表达;(感情)流露vi.登记,注册;留下印象;完全符合;[印刷]对齐141. climax['kla?m?ks]n.顶点,极点;高潮;层进法;[生物学]顶极群落vt.& vi.达到顶点;达到巅峰;使达到高潮;使达到性高潮142. avatar ['?v?tɑ:(r)]n.化身,天神下凡,具体化;[电脑](术语)指在虚拟实境中互动地呈现一个人;尤指电脑游戏或聊天室中代表使用者的)化身;2010美国电影阿凡达143. Invitation [??nv??te??n]n.招待,邀请;请柬,请帖;引诱,吸引,诱惑144. Modify ['m?d?fa?]vi.被修饰;修改vt.改变;减轻,减缓;[语]修饰,(用变音符号)改变145. Reason [?ri:z?n]n. 理由;原因;理性;理智;vt.& vi. 推理,思考;争辩;辩论;向…解释146. Register[人名] 雷吉斯特147. Restrict [ris?trikt]vt. 限制,限定;约束,束缚148. migration [ma??gre??n]n.迁移,移居149. invoke [?n'v??k]vt.乞灵,祈求;提出或授引…以支持或证明;召鬼;借助150. response [ri?sp?ns]n.反应;回答,答复;[宗]回应经文,应唱圣歌151. Scriptabbr.Scriptural 圣经的,根据圣经的152. script [skr?pt]n.脚本,手迹;书写体铅字;剧本、广播稿或者电影剧本vt.为电影(或戏剧等)写剧本;编造153. Range [reind?]n. 范围;射程;类别;(山脉,房屋等的)排列;vi. 搜索;变化;延伸;漫游;vt. 排列;(按一定位置或顺序)排序;把…分类;徘徊;adj. 牧场的,放牧区的154. Parameters [p?'r?m?t?z]n.因素,特征;界限;(限定性的)因素( parameter的名词复数);物数参量;参项;决定因素155. specify [?spes?fa?]vt.指定;详述;提出…的条件;使具有特性vi.明确提出,详细说明156. convert [k?n'v?:t]vt.(使)转变;使皈依;兑换,换算;侵占vi.经过转变;被改变;[橄榄球]触地得分后得附加分n.皈依者;改变宗教信仰者157. qualifier [?kw?l?fa??(r)]n.合格者,已取得资格的人;[语]修饰语;预选赛,资格赛158. redundant [r??d?nd?nt]adj.多余的,累赘的;(因人员过剩)被解雇的,失业的;重沓;衍159. procedure [pr??si:d??(r)]n.程序,手续;工序,过程,步骤;诉讼程序,(议会的)议事程序;〈罕〉进行160. replication [?repl?'ke??n]n.复制,折叠;回答;反响;[植]反叠161. execute ['eks?kju:t]vt.执行;处死,处决;履行;完成162. declare [d?'kle?(r)]vt.宣布;声明,声称;申报;[法]供述vi.声明,发表宣言;宣称163. cursor [?k?:s?]n.光标164. vernier ['v?:n??]n.游尺,游标,游标尺165. nonius ['n??n??s]n.(计算尺等上的)游标166. relative [?rel?tiv]adj. 相关的;相对的;相互有关的;比较而言的;n. 亲属,亲戚;相关物;亲缘植物(或动物);[语法学]关系词167. after ['ɑ:ft?(r)]prep.…后的;(表示时间)在…以后;(表示位置、顺序)在…后面conj.在…以后adv.以后,继后adj.后来的,以后的168. rais[医][=reflection-absorption infraredspectroscopy]红外反射-吸收光谱学169. rollback [?r??lb?k]n.反转,压价170. tranabbr.transmit 传输;transit 通过;tax revenue anticipation note 预期收益债券;transient短暂的171. exceed [?k'si:d]vt.超过;超越;(在数量和质量等方面)胜过;越过…的界限vi.突出,领先172. Entities [?entitiz]n.实体对像;实体,独立存在体,实际存在物( entity 的名词复数) 173. album ['?lb?m]n.相册;集邮簿;签名册;唱片174. Cost [k?st]n. 价钱,代价;花费,费用;牺牲;[用复数][法律]诉讼费;vi. 价钱为,花费;估计成本;vt. 付出代价;估价;使丧失;使付出努力175. banner [?b?n?]n. 横幅;旗,旗帜;标语;大字标题;adj. 第一流的,第一位的;杰出的;领先的,为首的;突出地支持(某一政党)的176. mobile ['m??ba?l]adj.移动的,可移动的;变化的;易变的,不稳的;交融的n.风铃,(可随风摆动的)悬挂饰物177. proxy ['pr?ks?]n.代表权;代理人,代替物;委托书;代理服务器178. restful [?restfl]adj.平静的,悠闲的,让人得到休息的;安生179. initialized [?'n??la?zd]已初始化的180. domain [d?'me?n]n.范围,领域;领土,疆土;管辖范围;[计]域名181. regrewv.再生,继续生长( regrow的过去式) 182. Instance ['?nst?ns]n.例子,实例;情况;要求,建议;[法]诉讼手续vt.举…为例183. resolve [r?'z?lv]vt.& vi.决定;决心vt.使消释;使分解,使解体;(指委员会或集会)表决;消退(炎症等)vi.下决定;分解n.决意,决定;(会议等的)决议184. certify ['s?:t?fa?]vt.(尤指书面)证明;发证书给…;证明(某人)患有精神病;颁发(或授予)专业合格证书185. binary [?ba?n?ri]adj.双重的,由两个东西组成的;二态的;二元的;二进制的n.一双;双体;二进制数;双子星186. installer [?ns't?:l?r]n.安装者;安装工;安装程序187. parser ['pɑ:s?]n.剖析器188. escape [?'ske?p]vi.逃脱;(气体,液体等)漏出;(未受伤或只受了一点伤害而)逃脱;声音(不自觉地)由…发出vt.& vi.逃避,避开n.逃走;逃跑工具或方法;野生种;泄漏vt.被忘掉,被忽视189. operator ['?p?re?t?(r)]n.经营者;操作员;电话接线员;运算符190. Serializable [s??r??la?'z?bl][计] 可串行化的191. hanged [h??d]v.悬( hang的过去式);(被)绞死;贴;逗留192. factory ['f?ktr?]n.工厂,制造厂;古代理店193. authorize ['?:θ?ra?z]vt.授权,批准,委托194. authabbr.author 作家;authenticity 确实性;authentic 可信的;authoress 女作家195. syntax [?s?nt?ks]n.句法;句法规则[分析];语构;语法196. entity ['ent?t?]n.实体;实际存在物;本质197. repository [r?'p?z?tr?]n.仓库;贮藏室;博物馆;亲信198. GUID [g?d]abbr.globally unique identifier 全球惟一标识符。

python编程必会1000英语单词

python编程必会1000英语单词

python编程必会1000英语单词全文共10篇示例,供读者参考篇1Python is like magic! It's a super cool programming language that allows us to create awesome things on the computer. Today, I'm going to share with you 1000 English words that you must know if you want to become a Python master. Are you ready? Let's dive in!1. Hello2. World3. Print4. Variable5. Function6. If7. Else8. Loop9. List10. Dictionary11. String12. Integer13. Float14. Boolean15. True16. False17. Input18. Output19. Module20. Import21. Random22. Math23. Range24. Length25. Append26. Remove28. Sort29. Reverse30. Index31. Join32. Split33. Upper34. Lower35. Title36. Replace37. Strip38. Format39. Concatenate40. Slice41. Tuple42. Set43. For45. Break46. Continue47. Pass48. Try49. Except50. RaiseWow, that's a lot of words already! But don't worry, we're just getting started. Let's keep going!51. Def52. Return53. Lambda54. Class55. Object56. Method57. Attribute58. Inheritance59. Encapsulation60. Polymorphism61. Exception62. Handling63. Traceback64. Global65. Local66. Scope67. Keyword68. Operator69. Assignment70. Comparison71. Logical72. Identity73. Membership74. Bitwise75. And76. Or77. Not78. Is79. In80. Not81. If-elif-else82. Pass83. Assert84. Del85. Yield86. Decorator87. Generator88. Iterator89. Iterable90. enumerate91. zip92. Unzip94. map95. filter96. reduce97. List comprehension98. Set comprehension99. Dictionary comprehension100. ModulePhew, we're halfway there! Let's take a quick break and then jump back in for the next 900 words. Are you ready? Let's do this!101. Pip102. Virtualenv103. Package104. Library105. Framework106. Django107. Flask109. Requests 110. Beautiful Soup 111. NumPy 112. Pandas 113. Matplotlib 114. Scikit-learn 115. Tensorflow 116. Keras117. OpenCV 118. Pillow119. PyQT120. Tkinter 121. CSV122. JSON123. XML124. HTML125. CSS126. JavaScript127. Databases128. MySQL129. PostgreSQL130. SQLite131. MongoDB132. Django ORM 133. Flask SQLAlchemy 134. Data manipulation 135. Data visualization 136. Machine learning 137. Artificial intelligence 138. Deep learning 139. Neural networks 140. Image recognitionWow, we're on a roll! Just a few more words to go. You're doing great, keep it up!141. Chatbot142. Web scraping143. Automation144. Data analysis145. Data science146. Data engineering147. Data visualization148. Business intelligence149. Natural language processing150. Sentiment analysis151. Recommender systems152. Anomaly detection153. Predictive modeling154. Regression155. Classification156. Clustering157. Dimensionality reduction 158. Cross-validation159. Hyperparameter tuning 160. Feature engineering161. Feature selection162. Model evaluation163. Confusion matrix164. Accuracy165. Precision166. Recall167. F1 score168. ROC curve169. AUC-ROC170. Gradient descent171. Stochastic gradient descent 172. Mini-batch gradient descent173. Adam174. RMSprop175. Learning rate176. Regularization177. Lasso178. Ridge179. Elastic Net180. OverfittingWe're almost there! Just a few more words to go. You're doing amazing, keep up the good work!181. Underfitting182. Bias183. Variance184. Ensemble learning185. Bagging186. Boosting187. Random Forest188. Gradient Boosting189. AdaBoost190. XGBoost191. LightGBM192. CatBoost193. K-nearest neighbors194. Support Vector Machine195. Decision Tree196. Neural network197. Deep learning198. Convolutional Neural Network199. Recurrent Neural Network200. Long Short-Term MemoryCongratulations, you did it! You now know 2000 English words that will help you become a Python programming wizard. Keep practicing and learning, and you'll be creating amazing things in no time. Python is truly magical, and with these wordsin your arsenal, you'll be able to work wonders with it. Good luck on your coding adventures!篇2Python is super fun and cool! Today I'm gonna teach you 1000 English words that you must know for Python programming. Are you ready? Let's go!1. Hello - This is a greeting in Python2. World - This is a famous example in Python, often used in the first program you write3. Print - This is a word that means to display something on the screen4. If - This is a word used for making decisions in Python5. Else - This is another word used for making decisions in Python6. While - This is a word used for looping in Python7. For - This is another word used for looping in Python8. Function - This is a word used for defining a block of code that can be reused9. Variable - This is a word used for storing data in Python10. List - This is a word used for storing multiple items in PythonWow, we've already learned 10 words! Python programming is so exciting, don't you think? Let's keep going and learn more words to become a Python master!11. Tuple - This is a word used for storing immutable data in Python12. Dictionary - This is a word used for storing key-value pairs in Python13. Module - This is a word used for organizing code in Python14. Package - This is a word used for organizing multiple modules in Python15. Import - This is a word used for bringing code from other modules into your program16. Class - This is a word used for defining a blueprint for creating objects in Python17. Object - This is a word used for instances of a class in Python18. Inheritance - This is a word used for creating a new class based on an existing class in Python19. Method - This is a word used for functions that belong toa class in Python20. Argument - This is a word used for values that are passed to a function in PythonWe're halfway there! Keep it up, little programmer! Let's learn more words and become Python experts together!21. Syntax - This is a word used for the rules of writing code in Python22. Indentation - This is a word used for the spaces or tabs at the beginning of a line to indicate blocks of code in Python23. Loop - This is a word used for repeating a block of code in Python24. Break - This is a word used for exiting a loop in Python25. Continue - This is a word used for skipping the rest of the code in a loop and continuing to the next iteration26. Range - This is a word used for generating a sequence of numbers in Python27. Random - This is a word used for generating random numbers in Python28. Input - This is a word used for getting user input in Python29. Output - This is a word used for displaying information to the user in Python30. Comment - This is a word used for adding notes to your code in PythonGreat job! You're doing amazing! Let's learn even more words and become Python wizards!31. Error - This is a word used for mistakes in your code that need to be fixed32. Debugging - This is a word used for finding and fixing errors in your code33. Traceback - This is a word used for the list of function calls that led to an error in your code34. Exception - This is a word used for handling errors in Python35. Try - This is a word used for trying a block of code that might cause an error36. Except - This is a word used for catching and handling errors in Python37. Finally - This is a word used for running code whether an exception is raised or not38. Raise - This is a word used for creating custom exceptions in Python39. Assert - This is a word used for testing if a condition is true, otherwise it raises an exception40. Unit Test - This is a word used for testing individual units or components of your codeYou're almost there! Keep going, you're almost a Python master! Let's learn the last batch of words together!41. Package - This is a word used for organizing modules in Python42. Pip - This is a word used for installing and managing Python packages43. Virtual Environment - This is a word used for creating isolated Python environments for different projects44. Lambda - This is a word used for creating small anonymous functions in Python45. Map - This is a word used for applying a function to each item in an iterable46. Filter - This is a word used for filtering out items from an iterable that do not meet a certain condition47. Reduce - This is a word used for applying a function to pairs of items in an iterable to reduce it to a single value48. List Comprehension - This is a word used for creating lists based on existing lists49. Iterator - This is a word used for traversing through elements in a collection one at a time50. Generator - This is a word used for creating iterators in PythonCongratulations! You've learned 50 more words for Python programming! You're officially a Python expert now! Keep practicing and coding, and you'll become a Python guru in no time! Keep up the great work, little programmer!篇3Oh my god, guys! I just learned something super cool in my Python programming class and I can't wait to share it with you!Today, we're going to talk about 1000 must-know English words for coding in Python. Are you ready? Let's dive in!1. Variables: These are like containers that hold information.2. Strings: A sequence of characters, like words or sentences.3. Lists: A collection of items that can be changed.4. Loops: Repeating actions in your code.5. Functions: A block of code that performs a specific task.6. Conditionals: Statements that make decisions in your code.7. Dictionaries: A collection of key-value pairs.8. Libraries: Collections of pre-written code that you can use in your programs.9. Inputs: Information that a user gives to a program.10. Outputs: Information that a program gives back to the user.11. Debugging: Finding and fixing errors in your code.12. Algorithms: Step-by-step instructions for solving a problem.13. Data types: Different kinds of information that you can use in your code.14. Operators: Symbols that perform operations on variables.15. Comments: Notes that you can leave in your code for yourself and others to read.Wow, that was a lot of words! But don't worry, with practice and patience, you'll be a Python pro in no time. Keep coding, my friends!篇4Python is a super cool programming language that is so fun to learn! Today, I'm going to share with you 1000 English words that you must know if you want to become a pro at Python coding.1. Hello2. World3. Print4. Input5. Variable7. Loop8. If9. Else10. List11. Tuple12. Dictionary13. Set14. Integer15. Float16. String17. Boolean18. True19. False20. And21. Or22. Not24. Math25. Random26. Time27. Range28. Len29. Append30. Remove31. Pop32. Sort33. Reverse34. Index35. Slice36. Lower37. Upper38. Title39. Replace41. Join42. Format43. While44. Break45. Continue46. Pass47. Global48. Local49. Argument50. Parameter51. Lambda52. Map53. Filter54. Reduce55. Try56. Except58. Raise59. Assert60. Class61. Object62. Constructor63. Inheritance64. Method65. Property66. Module67. Package68. Namespace69. Error70. Exception71. Debug72. Test73. Unit75. Install76. Pip77. Virtualenv78. Pipenv79. Pytest80. Numpy81. Pandas82. Matplotlib83. Seaborn84. Scikit-learn85. BeautifulSoup86. Requests87. Django88. Flask89. Pyramid90. Bottle92. Kivy93. Pygame94. Jupyter95. Anaconda96. Conda97. PEP898. IDE99. Debugging100. DocumentationWow, that was a looong list of words! But don't worry, with practice and determination, you'll soon become a Python pro. Keep on coding and never give up! Happy coding!篇5Sure! Here is an article in a playful and informal tone, written in English:Hey everyone! Today I'm going to tell you about 1000 super important English words that you need to know when you'relearning Python programming. Python is a cool language that lets you create all kinds of fun stuff like games, websites, and even robots!1. Hello - This is how you greet people in English. It's always nice to say hello before you start talking about code!2. Python - The name of the programming language we're learning about. It's named after Monty Python, a famous comedy group from the UK.3. Print - This is a command in Python that lets you display stuff on the screen. It's like writing a message on a piece of paper and showing it to someone.4. Variable - A container where you can store information in Python. It's like having a box where you can keep your toys.5. Loop - A way to make your program repeat certain actions over and over again. It's like making a robot do the same dance moves again and again.6. Function - A block of code that does a specific task. It's like having a magic spell that makes something cool happen in your program.7. List - A collection of items in Python. It's like having a shopping list where you write down all the things you need to buy.8. If statement - A way to make decisions in your program. It's like choosing between eating ice cream or cake for dessert.9. Class - A blueprint for creating objects in Python. It's like having a recipe for baking yummy cookies.10. Dictionary - A collection of key-value pairs in Python. It's like having a phone book where you can look up people's numbers.Wow, that's a lot of words already! But don't worry, learning Python is super fun and these words will help you become a coding wizard in no time. Keep practicing and soon you'll be able to create your own amazing projects. Have fun coding!篇6Hey guys! Today, I'm going to teach you all about 1000 must-know English words for Python programming. Python is a super cool language that you can use to create awesome programs and games. So let's jump right in and learn some new words!1. Variable - This is like a box where you can store information. You can give the box a name, like "my_variable", and then put stuff in it.2. String - A string is a bunch of letters or words put together. You can use strings to display text in your programs.3. Integer - An integer is a whole number, like 5 or 10. You can use integers to do math in your programs.4. Function - A function is like a little program inside your program. You can use functions to make your code more organized and easier to read.5. Loop - A loop is a way to repeat a block of code over and over again. This can save you a lot of time and make your programs more efficient.6. List - A list is like a collection of items. You can put all sorts of things in a list, like numbers, strings, or even other lists.7. Module - A module is a file that contains Python code. You can use modules to add extra functionality to your programs.8. Dictionary - A dictionary is like a list, but with a twist. Instead of just having one item in each slot, a dictionary has a key-value pair. This means you can look up items by their keys.9. Class - A class is like a blueprint for creating objects in your program. You can use classes to define the characteristics and behaviors of your objects.10. Conditional - A conditional is a way to make decisions in your code. You can use conditionals to control the flow of your program based on certain criteria.So there you have it, guys! These are just a few of the important words you need to know to be a Python pro. Keep practicing and learning, and soon you'll be able to write amazing programs all on your own. Happy coding!篇7Python is super fun and super cool! If you want to be a coding wizard, you gotta know these 1000 English words in Python. Trust me, it’s gonna be epic!1. Hello: This is how you greet Python.2. World: The world is your oyster with Python.3. Print: Show off your skills by printing stuff.4. Variable: A fancy word for a storage box.5. String: Text is a string in Python.6. Integer: Whole numbers are integers in Python.7. Float: Decimal numbers are floats in Python.8. List: A collection of things in Python.9. Tuple: Like a list, but you can’t change it.10. Dictionary: A fancy list with keys and values.And the list goes on and on! With these words in your Python toolbox, you’ll be unstoppable. So keep practicing, keep coding, and keep having fun with Python! See you in the coding world, my friend!篇8Yo yo yo! Are you ready to learn some super cool Python programming words? Let's dive right in!1. Variable: A variable is like a special box where you can store information in your code. You can give it a name like "my_variable" and put numbers or words inside.2. Function: A function is like a magic spell that can do cool stuff in your code. You can make your own functions or use ones that are already built-in to Python.3. Loop: A loop is like a merry-go-round that goes around and around in your code. You can make loops to repeat a certain task over and over again.4. If statement: An if statement is like a decision maker in your code. It can check if something is true or false and then do different things based on the answer.5. List: A list is like a shopping list where you can put lots of things in order. You can have numbers, words, or even other lists inside a list.6. Dictionary: A dictionary is like a real dictionary where you can look up a word and find its definition. In Python, a dictionary has keys and values that are related to each other.7. Module: A module is like a toolbox full of useful tools for your code. You can import modules to use functions, variables, and other cool stuff.8. String: A string is a bunch of letters, numbers, or symbols put together in Python. You can use strings to display text on the screen or store information in your code.9. Syntax: Syntax is like the grammar rules of Python. You need to follow the correct syntax to make sure your code runs smoothly.10. Comment: A comment is like a sticky note in your code that helps you remember things. You can write comments using the "#" symbol.Wow, we just learned 10 super important Python programming words! Keep practicing and soon you'll be a coding superstar! Stay tuned for more awesome Python words next time! Peace out!篇9Python is a super cool programming language that you should definitely learn if you want to be a coding master! Today, I'm gonna tell you about 1000 super important English words that you should know when you're coding in Python.1. Hello: This is how you greet Python when you start coding.2. World: This is where all your Python code lives.3. Print: This is how you make Python talk and show you stuff.4. Variable: This is like a storage box where you can put stuff.5. Function: This is like a super power that does cool stuff in Python.6. Loop: This is like a roller coaster that makes Python do things again and again.7. List: This is like a shopping list where you can put lots of things.8. Dictionary: This is like a super smart list where you can find things quickly.9. If: This is like a decision maker in Python.10. Else: This is like a backup plan for Python.Remember, these are just a few of the 1000 super important English words in Python. Keep on coding and learning, and you'll become a Python pro in no time! Happy coding!篇10Python is super cool and it's like a magic wand that can make things happen in the computer world! In Python, we use something called "variables" to store information like numbers, words, and even colors.There are lots of different types of variables in Python, such as integers (whole numbers), floats (numbers with decimals), strings (words or sentences), and booleans (True or False). Thesevariables help us write programs that can do all sorts of awesome things!When we want to do something specific in Python, we use "functions" to tell the computer what to do. Functions are like mini-programs that have a job to do, like adding numbers together or printing out messages.We can also use something called "loops" in Python to make the computer do the same thing over and over again. This is super helpful when we need to do something a bunch of times without typing it out every time.Another cool thing about Python is that we can use "if statements" to make decisions in our programs. We can tell the computer to do one thing if a condition is True, and another thing if it's False. It's like giving the computer a set of rules to follow!And don't forget about "lists" and "dictionaries" in Python! Lists are like containers that can hold lots of information, and dictionaries are like lists but with special keys to help us find things quickly.So, if you want to be a super-duper Python programmer, make sure you know all about these 1000 English words! Practice, practice, practice, and soon you'll be a coding superstar!。

(完整版)C语言编程必背单词

(完整版)C语言编程必背单词

(完整版)C语言编程必背单词C语言必背单词运算符与表达式: 1.constant 常量 2. variable 变量 3. identify 标识符4. keywords 关键字5. sign 符号6. operator 运算符7. statement语句 8. syntax 语法 9. expression 表达式 10. initialition 初始化 11. number format 数据格式12 declaration 说明 13. type conversion 类型转换14.define 、definition 定义条件语句: 1.select 选择 2. expression 表达式 3. logical expression 逻辑表达式4. Relational expression 关系表达式5.priority优先6. operation运算 7.structure 结构循环语句: 1.circle 循环2. condition 条件3. variant 变量4. process过程5.priority优先6. operation运算数组:1. array 数组2. reference 引用3. element 元素 4. address 地址 5. sort 排序 6. character 字符 7. string 字符串 8. application 应用函数:1.call 调用2.return value 返回值3.function 函数4. declare 声明5. `parameter 参数 6.static 静态的 7.extern 外部的指针:1. pointer 指针2. argument 参数3. array 数组4. declaration 声明5. represent 表示6. manipulate 处理结构体、共用体、链表: 1 structure 结构 2 member成员 3 tag 标记 4 function 函数 5 enumerate 枚举 6 union 联合(共用体)7 create 创建 8 insert 插入 9 delete 删除 10 modify 修改文件: 1、file 文件 2、open 打开 3、close 关闭 4、read 读 5、write 写 6、error 错误序号主要章节常用英汉对照词汇备注 1 运算符与表达式(operatorandexpression )汉语英语常量 constant 变量 variable 标识符 identify 关键字 keywords 符号 sign运算符 operator语句 statement 语法 syntax表达式Expression 初始化Initialization 数据格式number format说明 Declaration 类型转换 type conversion定义 Define 、 definition 2 条件语句( conditionstatement) 选择select 表达式expression 逻辑表达式logical expression关系表达式 Relational expression 优先 priority 运算 operation 结构 structure 3 循环语句(circle statement) 循环 circle条件 condition 变量 variant 过程 process 优先 priority 运算 operation 4 函数(function) 调用call 返回值return value 函数function 声明declare 参数 parameter 静态的 static外部的 extern 5 数组和指针 (array andpointer) 数组 array 引用 reference 元素 element 地址 address 2排序 sort 字符 character 字符串 string 应用 application 指针 pointer 参数 argument 数组 array 声明 declaration 表示 represent 处理 manipulate 6 结构体、共用体(structures 、 union )结构 structure 成员 member 标记 tag函数 function 枚举 enumerate联合 ( 共用体 ) union 创建 create 插入 insert 删除 delete 修改 modify 7 文件( file) 文件 file 打开 open 关闭 close 读 read 写 write 错误 errorProgram Design 程序设计writing program 编写程序standardize vt.使标准化coding the program 编程simplify vt.单一化,简单化programming 程序 revision n.校订,修正 programmer n.程序员 occupy vt.占领,住进 logic n.逻辑,逻辑学 BASIC 初学者通用符号指令代码machine code 机器代码teaching language 教学语言debug n.DOS命令,调试 simplicity n.单纯,简朴 compactness a.紧凑的,紧密的timesharing system 分时系统description n.描述,说明interactive language 交互式语言break n.中断 manufacturer n.制造业者structure chart 结构图 dialect n.方言,语调the program flow 程序流expense n.费用,代价 manager module 管理模块 uniformity n.同样,划一worder module 工作模块archaic a.己废的,古老的mainmodule 主模块sufficient a.充分的,足够的submodule 子模块data processing 数据处理 modify v.修正,修改 business application 商业应用outline n.轮廓,概要 scientific application 科学应用compose分解lexical a.字典的,词汇的 code 代码 non-programmer n.非编程人员node vt改为密码 notation n.记号法,表示法,注释pseudocode n.伪代码 verbosity n.唠叨,冗长 commas n.逗点逗号 record n.记录documentation 文档subrecord n.子记录flowchart/flow 程表/流程 data division 数据部 visual a.视觉的 procedure division 过程部 represent vt.表现,表示,代表comprise vt.包含构成 structured techniques结构化技术 operator n.运算符,算子 straightforward a.笔直的,率直的commercial package 商业软件包subroutine n.子程序generator n.产生器,生产者driver module 驱动模块mathematician n.专家 line by line 逐行 operator n.作符translate vt.翻译,解释forerunner n.先驱modular 摸块化ancestor n.祖宗cumbersome a.讨厌的,麻烦的teaching programming 编程教学lengthy a.冗长的,漫长的 alter vi./vt.改变flaw n.缺点裂纹 devclop vt.发达separate a.各别的 recompile v.编译 assist n.帮助 cycle n.循环technician n.技师remove vt.移动,除去straight line 直线category n.种类,类项rectangle n.长方形,矩形 P-code p代码virtrally ad.事实上3symology n.象征学象征的使用register n.寄存器 to summaries 总之,总而言之by convention 按照惯例 cyptic n.含义模糊的,隐藏的diamond-shaped a,菱形的 bracket n.括号decision n判断obviate 除去,排除 terminal n. a终端机,终端的keyword n.关键字card reader 阅读器 underline vt.下划线translator program 译程序 monadic a. monad(单位)的Programming 程序设计 dec/binary n.二进制 source language 源语shift 变化,转移,移位 machine language 机器 overflow n.溢出machine instruction 机器指令arithmetic n.算术,算法 computer language 计算机语composite symbol 复合型符号.assembly language 汇编语assignment n.赋值floating point number浮点数proliferation n.增服 high-level language高级语 pointer n.指针natural language 自然语言 array n.数组矩阵,source text 源文本 subscript n.下标intermediate language 中间语言type conversion 类型转换 software development 软件开发address arithmetic 地址运算 map vt.映射,计划denote vt.指示,表示 maintenance cost 维护费用subprogram n.子程序legibility n.易读性,易识别separate compilation 分离式编泽amend vt.修正,改善 alphabetic a.照字母次序的 consumer n.消费者 digit n.数字位数enormous a.巨大的,庞大的numeric expression 数值表达式 reliability n.可信赖性,可信度tap n.轻打,轻敲,选择 safety n.安全,安全设备 print zone 打印区property n.财产,所有权 column n.列correctness n.正确, functionality n.机能 semicolon n.分号portable a.叮携带的,可搬运的survey n.概观. altoggle n.肘节开关 task n.作,任务declaration n.宣告说明source program 源程序mufti-dimension array 多维数组 object program 目标程序。

程序员必记的单词

程序员必记的单词

程序员必记的单词一、数据类型相关。

1. integer [ˈɪntɪdʒə(r)] n. 整数。

2. float [fləʊt] n. 单精度浮点数;v. 浮动,漂浮。

3. double [ˈdʌbl] n. 双精度浮点数;adj. 两倍的,成双的。

4. string [strɪŋ] n. 字符串。

二、编程结构相关。

1. if [ɪf] conj. 如果。

2. else [els] conj. 否则。

3. for [fɔː(r)] prep. 为了;conj. 因为;循环结构中的关键字。

4. while [waɪl] conj. 当……的时候;在循环结构中使用。

5. do [duː] v. 做;在“do - while”循环结构中有特定用法。

6. switch [swɪtʃ] n. 开关;在“switch - case”语句结构中使用;v. 转换。

7. case [keɪs] n. 情况;在“switch - case”语句结构中使用。

8. break [breɪk] v. 打破,中断;用于跳出循环或者switch语句。

三、函数相关。

1. function [ˈfʌŋkʃn] n. 函数。

2. parameter [pəˈræmɪtə(r)] n. 参数。

3. return [rɪˈtɜːn] v. 返回;n. 收益。

四、对象相关(以面向对象编程为例)1. class [klɑːs] n. 类。

2. object [ˈɒbdʒɪkt] n. 对象。

3. method [ˈmeθəd] n. 方法。

五、其他常用词汇。

1. variable [ˈveəriəbl] n. 变量;adj. 可变的。

2. constant [ˈkɒnstənt] n. 常量;adj. 不变的。

3. array [əˈreɪ] n. 数组。

4. import [ˈɪmpɔːt] v. 导入;n. 进口。

5. export [ˈekspɔːt] v. 导出;n. 出口。

计算机编程英语词汇表

计算机编程英语词汇表

granular颗粒的形容词/ˈɡrænjələr/ hierarchical分层的形容词/ˌhaɪəˈrɑːrkɪkl/ immutable不变的形容词/ɪˈmjuːtəbl/ imperative命令式形容词/ɪmˈper.ə.tɪv/ incentive激励的,刺激的形容词/ɪnˈsentɪv/ indecisive犹豫不决的形容词/ˌindi'saisiv/ intermittent间歇的形容词/ˌɪntərˈmɪtənt/ intrusive侵⼊式的形容词/ɪnˈtruːsɪv/ intuitive直觉的形容词/ɪnˈtuːɪtɪv/ manually⼿动的形容词/ˈmænjuəli/ mature成熟的形容词/məˈtʃʊr/ mediocre普通的,平凡的形容词/ˌmiːdiˈoʊkər/ miscellaneous混杂、各式各样的形容词/ˌmɪsəˈleɪniəs/ mutable可变的形容词/ˈmjuːtəbl/on-premise预置的形容词/ɑːnˈpremɪs/ periodically定期地,周期性地形容词/ˌpɪriˈɑːdɪkli/ permanent永久的形容词/ˈpɜːrmənənt/ permissive宽容的形容词/pərˈmɪsɪv/ rapid迅速的、⻜快的形容词/ˈræpɪd/ redacted经过编辑的形容词/rəˈdakt/ resilient有弹⼒的、能恢复的形容词/rɪˈzɪliənt/ respective分别的,各⾃的形容词/rɪˈspektɪv/ retrospective追溯的、回顾的、复盘的形容词/ˌretrəˈspektɪv/ robust强健的,顽健的形容词/roʊˈbʌst/ seamless⽆缝的形容词/ˈsiːmləs/semantic语义的形容词/sɪˈmæntɪk/ significant重⼤的,有意义的形容词/sɪɡˈnɪfɪkənt/ sophisticated复杂的、富有经验的形容词/səˈfɪstɪkeɪtɪd/ standalone单独的形容词/ˈstændəˌləun/ substantial实质的形容词/səbˈstænʃl/ subtle微⼩(但重要)的形容词/ˈsʌt.əl/ sustainable可持续的形容词/səˈsteɪnəbl/ symmetric对称的形容词/sɪ'mɛtrɪk/ synchronous同步的形容词/ˈsɪŋkrənəs/ thrilled⾮常兴奋的形容词/θrɪld/ underlying在下⾯的形容词/ˌʌndərˈlaɪɪŋ/implicit含蓄的、含糊不清的形容词/ɪmˈplɪs.ɪt/浅显好过隐晦(Explicit is better than implicit)02. 动词aggregate聚合,整合动词/ˈæɡrɪɡət/将多条信息聚合到⼀起,⽐如聚合类的新闻客户端allocate分配动词/ˈæləkeɪt/analyze分析动词/ˈænəlaɪz/capture捕捉、抓取动词/ˈkæptʃər/concatenate连接动词/kɑnˈkætəˌnet/decouple使分离动词/diːˈkʌpl/differentiate区别动词/ˌdɪfəˈrenʃieɪt/embrace拥抱、接受动词/ɪmˈbreɪs/拥抱某种技术encapsulate压缩、封装动词/ɪnˈkæpsjuleɪt/escalate升级动词/ˈeskəleɪt/impersonate扮演,模仿动词/ɪmˈpɜːrsəneɪt/introspect⾃解析,⾃省动词/ˌɪntrə'spɛkt/常⽤语身份认证过程中,对 token 进⾏⾃解析。

开发用英语单词总汇

开发用英语单词总汇

开发用英语单词总汇一、编程基础词汇1. Algorithm(算法)2. Data Structure(数据结构)3. Variable(变量)4. Function(函数)5. Loop(循环)6. Condition(条件)7. Array(数组)8. String(字符串)9. Object(对象)10. Class(类)二、软件开发流程词汇1. Requirements Analysis(需求分析)2. Design(设计)3. Implementation(实现)4. Testing(测试)5. Deployment(部署)6. Maintenance(维护)7. Iteration(迭代)8. Version Control(版本控制)9. Project Management(项目管理)10. Documentation(文档)三、编程语言相关词汇1. Programming Language(编程语言)2. Syntax(语法)3. Compilation(编译)4. Interpretation(解释)5. Library(库)6. Framework(框架)7. API(应用程序编程接口)8. SDK(软件开发工具包)9. Package(包)10. Module(模块)四、前端开发词汇1. HTML(超文本标记语言)2. CSS(层叠样式表)3. JavaScript(一种编程语言)4. DOM(文档对象模型)5. Layout(布局)6. Responsive Design(响应式设计)7. Framework(前端框架,如Bootstrap、Vue.js等)8. Widget(小部件)9. Animation(动画)10. User Interface(用户界面)五、后端开发词汇1. Server(服务器)2. Database(数据库)3. SQL(结构化查询语言)4. NoSQL(非关系型数据库)5. ServerSide Scripting(服务器端脚本)6. Backend Framework(后端框架,如Django、Express等)7. RESTful API(REST风格的应用程序编程接口)8. Authentication(认证)9. Authorization(授权)10. Scalability(可扩展性)(文档将持续更新,敬请期待后续内容)六、云计算与大数据词汇1. Cloud Computing(云计算)2. Virtualization(虚拟化)3. Serverless Architecture(无服务器架构)4. Data Center(数据中心)5. Big Data(大数据)6. Data Mining(数据挖掘)7. Machine Learning(机器学习)9. Cluster Computing(集群计算)10. Distributed System(分布式系统)七、网络安全词汇1. Cybersecurity(网络安全)2. Firewall(防火墙)3. Encryption(加密)4. Malware(恶意软件)5. Phishing(网络钓鱼)6. Intrusion Detection System(入侵检测系统)7. Security Breach(安全漏洞)8. Vulnerability(漏洞)9. Threat Intelligence(威胁情报)10. Data Protection(数据保护)八、移动开发词汇1. Mobile Application(移动应用)2. App Store(应用商店)3. User Experience(用户体验)4. User Interface Design(用户界面设计)5. Native App(原生应用)6. Hybrid App(混合应用)7. CrossPlatform Development(跨平台开发)8. Android(安卓操作系统)9. iOS(苹果操作系统)10. Wearable Technology(可穿戴技术)九、测试与质量保证词汇1. Test Case(测试用例)2. Test Plan(测试计划)3. Bug(缺陷)4. Defect(故障)5. Regression Testing(回归测试)6. Performance Testing(性能测试)7. Unit Testing(单元测试)8. Integration Testing(集成测试)9. Acceptance Testing(验收测试)10. Quality Assurance(质量保证)十、敏捷开发与Scrum词汇1. Agile Development(敏捷开发)2. Scrum Master(Scrum主管)3. Product Owner(产品负责人)4. Scrum Team(Scrum团队)5. Sprint(冲刺)6. Backlog(待办事项列表)7. Daily Standup(每日站会)8. Sprint Review(冲刺回顾)9. Retrospective(回顾会议)10. Burndown Chart(燃尽图)(文档将持续更新,敬请期待后续内容)十一、Web开发与浏览器词汇1. Web Development(网页开发)2. Web Browser(网页浏览器)3. Web Server(网络服务器)4. HTTP/(超文本传输协议/安全超文本传输协议)5. HTML5(超文本标记语言第五版)6. CSS3(层叠样式表第三版)7. JavaScript Framework(JavaScript框架)8. Websocket(网络套接字)9. Session Management(会话管理)10. CrossOrigin Resource Sharing(跨源资源共享)十二、版本控制系统词汇1. Git(分布式版本控制系统)2. Repository(仓库)3. Commit(提交)4. Branch(分支)5. Merge(合并)6. Pull Request(拉取请求)7. Fork(分叉)8. Clone(克隆)9. Push(推送)10. Tag(标签)十三、DevOps与持续集成词汇1. DevOps(开发与运维)2. Continuous Integration(持续集成)3. Continuous Deployment(持续部署)4. Continuous Delivery(持续交付)5. Pipeline(管道)6. Build Automation(构建自动化)7. Configuration Management(配置管理)8. Infrastructure as Code(基础设施即代码)9. Monitoring(监控)10. Logging(日志记录)十四、用户体验与交互设计词汇1. User Experience Design(用户体验设计)2. Interaction Design(交互设计)3. User Persona(用户画像)4. Wireframe(线框图)5. Prototype(原型)6. Usability Testing(可用性测试)7. Accessibility(可访问性)8. User Flow(用户流程)9. Feedback Loop(反馈循环)10. Iterative Design(迭代设计)十五、区块链与加密货币词汇1. Blockchain(区块链)2. Cryptocurrency(加密货币)3. Bitcoin(比特币)4. Smart Contract(智能合约)5. Decentralization(去中心化)6. Mining(挖矿)7. Token(代币)8. Wallet(钱包)9. Consensus Mechanism(共识机制)10. Distributed Ledger Technology(分布式账本技术)(文档将持续更新,敬请期待后续内容)。

编程入门单词

编程入门单词
9.default v.缺省,预置,约定
10.enable vt.启动,恢复正常操作
11.margin n.余量,边缘,边际
12.selectvt.选择
13.dialog n. & vt.对话
14.create vt.创立,建立
15.item n.项,项目,条款
16.edit vt.编辑,编排,编篡
bel n.标签,标号,标识符
26.within prep.在…以内
27.order n. & vt.指令,次序;排序
28.note n.注解,注释
29.backup n.备份,后备,后援
30.version n.版本
31.single a. & n.单个的;一个,单
32.document n.文献,资料,文件
116.entry n.输入,项(目),入口
117.symbol n.符号,记号
118.binary n. & a.二进制;双态的
119.associated a.联合的,相联的
120.transfer v.传送,转换,转移
121.connect v.连接
122.generate vt.产生,发生,生成
171.border n.边界,框,界限
172.cache n.高速缓存
173.fastback n.快速返回
174.substitute v.代替,替换,代入
175.disabled a.禁止的,报废的
176.handler n.处理程序
177.processor n.处理机,处理程序
178.exceed v.超过,大于
58.linker n.连接程序
59.loop n.圈,环;(程序)循环,回路
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

mand n. 命令,指令2.program n. 程序3.procedure n. 过程,程序,工序4.selection n. 选择5.function n. 函数,功能,操作6.following a. 下列的,以下的7.control v. 控制,支配,管理8.switch n. & v. 开关,转换,切换9.default v. 缺省,预置,约定10.enable vt. 启动,恢复正常操作11.margin n. 余量,边缘,边际12.select vt. 选择13.dialog n. & vt. 对话14.create vt. 创立,建立15.item n. 项,项目,条款16.edit vt. 编辑,编排,编篡17.parameter n. 参数,参变量18.variable a. 可变的;n. 变量19.active a. 激活的,活动的20.definition n. 定义,确实,清晰度21.between prep. 在…之间,中间22.optional a. 任选的,可选的23.remove v. 除去,移动24.arrow n. 箭头,指针bel n. 标签,标号,标识符26.within prep. 在…以内27.order n. & vt. 指令,次序;排序28.note n. 注解,注释29.backup n. 备份,后备,后援30.version n. 版本31.single a. & n. 单个的;一个,单32.document n. 文献,资料,文件33.case n. 情况,场合34.source n. 源,电源,源点35.assign vt. 赋值,指定,分派36.update v. 更新,修改,校正37.updated a. 适时的,更新的38.recall vt. 撤消,复活,检索39.deletion n. 删去(部分),删除40.amount vt. & n. 总计;合计41.alias n. 别名,代号,标记42.quote n. & v. 引号;加引号43.correct a. & vt. 正确的;改正44.modification n. 改变,修改45.modified a. 修改的,变更的46.uppercase n. 大写字母47.debug vt. 调试48.lowercase n. 下档,小写体49.undo vt. 取消,废除50.wildcard n. 通配符51.memo n. 备忘录52.loaded a. 有负载的53.length n. (字,记录,块)长度54.round v. 舍入,四舍五入55.variant n. & a. 变体,易变的56.module n. 模块(程序设计)57.saving a. 保存的58.linker n. 连接程序59.loop n. 圈,环;(程序)循环,回路60.process vt. 处理,进程,加工61.refer v. 访问,引用,涉及62.result n. 结果63.syntax n. 语法,文法,句法64.null n. & a. 空(的),零(的)65.send v. 发送66.private a. 专用的,私人的67.collapse v. 崩溃,破裂68.pass v. 传送,传递,遍(数)69.public a. 公用的,公共的70.eject n. 弹出71.step n. 步,步骤,步长,档72.ignore vt. 不管,忽略不计73.share v. 共享,共用74.sequence n. 顺序,时序,序列75.double a. 两倍的,成双的76.lower a. 下部的,低级的77.count v. 计数,计算78.pop v. 上托,弹出(栈)79.valid a. 有效的80.greater than 大于ment n. & vi. 注解,注释82.reorder v. (按序)排列,排序83.direct a. 直接的84.programming n. 程序设计,编程序85.upper a. 上的,上部的86.row n. 行87.boundary n. 边界,界限,约束88.initialize v. 初始化89.personal a. 个人的,自身的90.convert v. 转换,变换91.global n. 全局,全程,全局符92.invoke vt. 调用,请求93.interactive a. 交互式,交互的94.rather ad. 宁可,有点95.marker n. 记号,标记,标志96.receive v. 接收97.equivalent a. 相等的,等效的98.storage n. 存储,存储器99.width n. 宽度100.startup n. 启动101.according to a. 按照,根据102.identify v. 识别,辨认103.month n. 月份104.mistake n. 错误105.produce v. 生产,制造106.ram 随机存取存储器107.digit n. 数字,位数,位108.minimum n. & a. 最小(的),最低109.enough a. & ad. 足够的,充足的110.reindex v. & n. 变换(改变)符号111.third a. & n. 第三,三分之一112.red a. & n. 红色(的)113.test n. & v. 测试114.address vt. & n. 寻址;地址115.pause vi. 暂停116.entry n. 输入,项(目),入口117.symbol n. 符号,记号118.binary n. & a. 二进制;双态的119.associated a. 联合的,相联的120.transfer v. 传送,转换,转移121.connect v. 连接122.generate vt. 产生,发生,生成123.nest v. 嵌套,后进先出124.intensity n. 强度,亮度125.horizontally ad. 水平地126.backspace v. 退格,回退127.terminate v. 端接,终止128.correctly ad. 正确地129.initially ad. 最初,开头130.reformat v. 重定格式131.integer n. 整数132.integrate v. 综合,集成133.subscript n. 注脚,下标134.limit n. 极限,限界135.colon n. 冒号“:”136.avoid vt. 避免,取消,无效137.range n. 范围,域,区域138.sum n. 和,合计,总额139.achieve vt. 完成,实现140.affect vt. 影响,改变,感动141.delay v. 延迟142.modifier n. 修改量,变址数143.invalid a. 无效的piler n. 编译程序(器) 145.dot n. 点146.explain v. 阐明,解释147.converted a. 转换的,变换的148.explanation n. 说明,注解,注释149.certain a. 确实的,确定的150.random a. 随机的151.image n. 图像,影像,映像152.maintain vt. 维护,保养,保留153.gather n. 聚集,集合154.cycle n. & v. 周,周期;循环155.ending n. 结束156.remember v. 存储,记忆,记住157.examine v. 检验,考试,审查158.leading n. & a. 引导(的) 159.handle n. 处理,句柄160.stand v. 处于(状态),保持161.movement n. 传送,移动162.background n. 背景,底色,基础163.assignment n. 赋值,分配164.recognize v. 识别165.route n. 路线,路由166.received a. 被接收的,公认的167.alter v. 改变,修改168.replaceable a. 可替换的169.semicolon n. 分号(;)170.overwrite v. 重写171.border n. 边界,框,界限172.cache n. 高速缓存173.fastback n. 快速返回174.substitute v. 代替,替换,代入175.disabled a. 禁止的,报废的176.handler n. 处理程序177.processor n. 处理机,处理程序178.exceed v. 超过,大于179.reserve vt. 保留,预定,预约180.icon n. 图符,象征181.calculation n. 计算,统计,估计182.processing n. (数据)处理,加工183.obtain v. 获得,得到184.recursive a. 递归的,循环的185.assist v. & n. 加速,帮助186.volume n. 卷,册,体积,容量187.debugger n. 调试程序188.division n. 除,除法,(程序)部分189.constant n. 常数190.trigger n. & v. 触发器;触发191.handling n. 处理,操纵age n. 应用,使用,用法193.whole a. 全部的,整个的194.connection n. 连接(法)195.preserve vi. 保存,维持196.dynamic a. 动态的,动力的197.stationary a. 静止的,平稳的198.circle n. 圆,圈,循环,周期199.detect vt. 检测200.counter n. 计数器,计算器201.subroutine n. 子程序202.bracketed a. 加括号的203.manually adv. 用手,手动地204.autoindex n. 自动变址(数) 205.restrict vt. 约束,限制206.repeatedly adv. 重复地207.limitations n. 限制,边界208.remainder n. 余数,余项,剩余209.resulting a. 结果的,合成的210.indexing n. 变址,标引,加下标211.insertion n. 插入,嵌入,插页212.lowest a. 最低的,最小的213.capitalized a. 大写的214.plain n. 明码215.substitution n. 代替,替换,置换216.quotation n. 引证,引用(句) 217.parse vt. (语法)分析218.mismatch n. & vt. 失配,不匹配219.printout n. 印出220.ellipsis n. 省略符号,省略(法)221.pattern n. 模式222.parallel a. 并行223.implement n. & vt. 工具;执行,实现224.deal v. 处理,分配,交易225.real n. 实数,实的,实型226.negate vt. 否定,求反,“非”227.roll n. & v. 案卷;卷动,滚动228.exponent n. 指数,阶,幂229.exponential a. 指数的,幂的,阶的ma n. 逗号“,”,逗点231.unmarked a. 没有标记的232.indirectly adv. 间接地233.equation n. 方程,方程式234.attached a. 附加的235.average n. 平均,平均数236.discard v. 删除,废除,放弃237.definable a. 可定义的,可确定的238.procedural a. 程序上的239.indefinitely adv. 无限地,无穷地240.major a. 较大的,主要的241.assemble v. 汇编,装配242.assembler n. 汇编程序243.arithmetic n. 算术,运算244.varying a. 变化的,可变的245.caret n. 插入符号246.stated a. 规定的247.protocol n. 规约,协议,规程248.presence n. 存在,有249.alphabet n. 字母,字母表250.subgroup n. 分组,子群251.repeating n. 重复,循环252.repetitive a. 重复的253.reenter v. 重新进入254.rearrange v. 重新整理,重新排序255.operator n. 操作员,运算符256.unsigned a. 无符号的257.unformatted a. 无格式的258.infinite a. 无限的,无穷的259.multiprocessing n. 多重处理,多道处理260.outcome n. 结果,成果,输出beled a. 有标号的262.consequently ad. 因此,从而263.aid n. 帮助,辅助程序264.increment n. 增量,加1,递增265.numerical a. 数量的,数字的bo n. 二进位组合码267.standard标准, 水准, 规范, 基座268.active活泼的, 活跃的; 积极的,起作用的269.application应用, 应用程序333.manager经理, 当家人270.setup 设置271.const const是一个C语言的关键字,它限定一个变量不允许被改变。

相关文档
最新文档