码迷,mamicode.com
首页 > 其他好文 > 详细

[error]

时间:2017-01-23 22:34:42      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:syntax   shell   blank   csdn   mod   href   mis   hello   type   

1、

输入:>>>print"hha"
SyntaxError: invalid syntax  

原因:要写空格

 

2、
>>> print "hello"
SyntaxError: Missing parentheses in call to ‘print‘

原因:Mac安装俩个Python版本,2和3,python2系列可以支持 print “xxxx” ,python系列需要使用print("xxx")

解决:
>>> print("hello")
hello

 

3、

>>> a=‘123‘
>>> print(‘1‘)
1
>>> print(‘1‘) in a
1
Traceback (most recent call last):
File "<pyshell#52>", line 1, in <module>
print(‘1‘) in a
TypeError: ‘in <string>‘ requires string as left operand, not NoneType

[error]

标签:syntax   shell   blank   csdn   mod   href   mis   hello   type   

原文地址:http://www.cnblogs.com/amanon/p/6344950.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!