傻瓜小白菜 发表于 2019-1-23 09:11:27

为什么会说名词没有被defined?然而print这个名词是能成功的????

目的寻找最大最小数
shell里输入small得到最小数,然而输入large就会显示没有defined。。。。。。。
于是我加了个print看看能不能看出是哪儿有bug
但是反而就什么事情都没有了???
具体如下:

x , y , z = 6 , 5 , 4
small = x if ( x < z and x < y ) else ( y if ( y < x and y < z ) else z)
large = x if ( x > z and x > y ) else ( y if ( y > x and y > z ) else z)
print(small)
print(large)

Traceback (most recent call last):
File "<pyshell#3>", line 1, in <module>
    large
NameError: name 'large' is not defined

BngThea 发表于 2019-1-23 09:19:15

我试了一下,并无问题
>>> x,y,z=6,5,4
>>> small = x if x<z and x<y else (y if y<x and y<z else z)
>>> small
4
>>> large = x if x>z and x>y else (y if y>x and y>z else z)
>>> large
6

傻瓜小白菜 发表于 2019-1-23 17:00:31

BngThea 发表于 2019-1-23 09:19
我试了一下,并无问题

我试了一下,发现确实是没什么问题,之前也不知道是发生什么了......
页: [1]
查看完整版本: 为什么会说名词没有被defined?然而print这个名词是能成功的????