@ssyue
2016-08-12T11:05:56.000000Z
字数 420
阅读 748
Python 作者:岳绍圣
不同于C是编译性语言,Python是解释性语言。
C需要编译器对源代码进行编译过后执行,Python需要解释器对每一句话进行解释后执行。
>>> x = ('This line is too long ''so I have to put it in two lines')>>> print xThis line is too long so I have to put it in two lines
