为什么在python3.7.4 a >= b显示的是False,而不是“not defined”
来源:5-7 比较运算符
夏J
2019-10-08
求老师解答,在python3.6.2中
a >= b显示的是“not defined”
为什么在python3.7.4 显示的是False,而不是“not defined”???
写回答
3回答
-
7七月
2019-10-08
a和b确实没定义呀
00 -
夏J
提问者
2019-10-08
重新打开了一个新的IDLE之后,运行了3遍,显示的是“not defined”,也不知道哪里出现了问题,源码也没有保存……
Python 3.7.4 (tags/v3.7.4:e09359112e, Jul 8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>> a>=b
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
a>=b
NameError: name 'a' is not defined
>>> a >= b
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
a >= b
NameError: name 'a' is not defined
00 -
7七月
2019-10-08
帖一下完整代码看看。
022019-10-09
相似问题