|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
- >>> a < b < c
- Traceback (most recent call last):
- File "<pyshell#8>", line 1, in <module>
- a < b < c
- NameError: name 'a' is not defined
- >>> a<b<c
- Traceback (most recent call last):
- File "<pyshell#9>", line 1, in <module>
- a<b<c
- NameError: name 'a' is not defined
- >>> (a < b) and (b < c)
- Traceback (most recent call last):
- File "<pyshell#10>", line 1, in <module>
- (a < b) and (b < c)
- NameError: name 'a' is not defined
- >>> (a < b) and (b < c)
- Traceback (most recent call last):
- File "<pyshell#11>", line 1, in <module>
- (a < b) and (b < c)
- NameError: name 'a' is not defined
- >>> (a < b)and(b < c)
- Traceback (most recent call last):
- File "<pyshell#12>", line 1, in <module>
- (a < b)and(b < c)
- NameError: name 'a' is not defined
- >>> (a < b)and(b < c)
- Traceback (most recent call last):
- File "<pyshell#13>", line 1, in <module>
- (a < b)and(b < c)
- NameError: name 'a' is not defined
复制代码
|
|