1. variables 变量,存储数据以备后用

2.data type 数据类型,如数字,布尔类型等

  numbers,booleans,,,,

3.whitespace 我理解的就是tab,对于结构很重要 感觉是python没有分号 识别比较困难?所以结构很重要?

  important in python, separates statements

4.comments 注释

  single line:# 单行注释用#开头

  multiple lines:  '''xxxxxxxx

          xxxxxxxx'''多行注释用多个‘包起来,但是在某些情况下 如 ''' there's a gay.''',应写成''' there\'s a gay. ''' 此部分搞错了。。。

          应该是在string中,如a=' there's a gay.' 应写成' there\'s a gay. ',而在注释中是不存在这种错误的,因为要由多个'''才可以作为开始或结束符号

5.arithmetic operations

   +, -, *, /, **(2**3=8,即2的3次幂为8), %(求模)

...

to be continued