python 缩进问题,代码如下
在linux终端操作如下user@pc$pythonPython2.7.3(default,Sep262012,21:53:58)[GCC4.7.2]onlinux2Ty...
在linux终端操作如下
user@pc$ python
Python 2.7.3 (default, Sep 26 2012, 21:53:58)
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> print 'hello,world'
hello,world #这个OK
接下来
>>>if 2 > 1:
. . .(\t)print ' 2>1 ' #(\t)代表用一个TAB 缩进
. . .print ' End ! '
回车后出现 SyntaxError: invalid syntax
这段代码的等效C代码是这样的
if(2>1)
printf("2>1");
printf("End!");
明明在python 代码里面我把if 缩进了,为什么还有语法错误?求解答! 展开
user@pc$ python
Python 2.7.3 (default, Sep 26 2012, 21:53:58)
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> print 'hello,world'
hello,world #这个OK
接下来
>>>if 2 > 1:
. . .(\t)print ' 2>1 ' #(\t)代表用一个TAB 缩进
. . .print ' End ! '
回车后出现 SyntaxError: invalid syntax
这段代码的等效C代码是这样的
if(2>1)
printf("2>1");
printf("End!");
明明在python 代码里面我把if 缩进了,为什么还有语法错误?求解答! 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询