[关闭]
@ssyue 2016-08-12T11:05:56.000000Z 字数 420 阅读 748

再学Python

Python 作者:岳绍圣


General[1]

不同于C是编译性语言,Python是解释性语言。

C需要编译器对源代码进行编译过后执行,Python需要解释器对每一句话进行解释后执行。

Python规范[2]

Python风格规范

  1. >>> x = ('This line is too long '
  2. 'so I have to put it in two lines')
  3. >>> print x
  4. This line is too long so I have to put it in two lines
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注