美文网首页
编程常用符号 英文表达

编程常用符号 英文表达

作者: SpringWolfM | 来源:发表于2018-06-04 12:02 被阅读0次
Keyboard symbols Explanation
~ tilde (sounds like til-da); be prepared to explain to computer-illiterate people saying "you know, the wave-shaped thingy"
! exclamation; commonly read as bang in computer shell programming as in #!/bin/sh
@ at
# pound; but commonly read as shee in computer shell programming as in #!/bin/sh, not sure why
$ dollar
% percent
^ caret; not many people know this word so be prepared to say "no, not carrot; it's the character above 6, an arrow pointing up"
& ampersand
* star; some read asterisk
( opening parenthesis (some may shorten it saying paren)
) closing parenthesis
_ underscore; once I heard people say underbar
+ plus
- minus, hyphen; as symbol before arguments in commands, some people including me read dash, easier to say one syllable
= equals
` backtick or backquote
{ opening brace
} closing brace
[ opening bracket
] closing bracket
| pipe or vertical bar
\ backslash; be prepared to explain to some computer-illiterate people
: colon
; semicolon
" double quote
' single quote
< less than; some may read left angle bracket
> greater than
, comma
. dot; period if in English text
? question mark
/ slash or forward slash; some computer-illiterate people may be confused about / and \
space
(), [] and {} may also be called brackets in general. In that case, they specifically call [] square brackets and {} curly brackets. I never like this. Open and closing may also be called left and right.

source:
http://english-for-chinese.blogspot.com/2008/09/how-to-read-keyboard-symbols.html
https://blog.csdn.net/wowldx/article/details/8516431
画表格:http://xianbai.me/learn-md/article/extension/table.html

相关文章

  • 编程常用符号 英文表达

    source:http://english-for-chinese.blogspot.com/2008/09/ho...

  • Bash脚本编程之算术表达式

    算术符号 Bash shell 脚本编程中的算术表达式所常用的算术运算符号包括:+,-,* ,/,%,**。其使用...

  • Mark Down 常用教程

    Mac电脑键盘符号 常用键盘说明:苹果键,英文:command,符号:⌘Alt键,英文:option,符号:⌥sh...

  • 正则表达式与方法

    正则表达式---常用符号 正则表达式--常用函数 正则表达式--常用技巧 代码: 正则表达式的应用举例 1、使用f...

  • Python爬虫之正则表达式用法

    正则表达式用来定义“字符串符合规则”。本文从常用符号和示例两个方面着手分析。 A、正则表达式常用符号: B、举例:...

  • 15-正则表达式

    正则表达式常用符号 组合符号 注意 正则中:\ [] {} () * + ? ^ | $ 这些字符,都有特殊的意义...

  • Python基础

    常用的快捷键 注意:代码中如果需要符号位置,符号必须是英文状态下输入的符号 Python基础语法 1.注释 写在代...

  • 关于文字,也许是人类的灵魂!

    如果讲实用,英文的符号功能,逻辑表达功能都要好于汉字! 英文更能直接的表达人的感受,观点和情绪喜好! 但是,汉字不...

  • 英语常用标点符号及其英文名概览

    工作中难免会经常输入英文标点符号,可是却叫不出它们的名字,本文简单梳理一下英文环境下常用的键盘上的标点符号。 ~ ...

  • 正则表达式

    功能 创建步骤 功能(使用正则) 常用的正则表达式规范: 方括号: 元字符 限定符号 重复符号 转义符号 修饰符 ...

网友评论

      本文标题:编程常用符号 英文表达

      本文链接:https://www.haomeiwen.com/subject/grbesftx.html