- 已关闭**。此问题需要details or clarity。当前不接受答案。
- 想要改进此问题?**添加详细信息并通过editing this post阐明问题。
12小时前关门了。
Improve this question
import random
def football(length, width):
return length * width
width = random.randrange
length = random.randrange
print random.randrange(200)
if (width, length <= 50):
print 'yes'
else:
print 'no'
1条答案
按热度按时间4uqofj5v1#
这是在问元组
width,length
是否小于或等于整数50
,这是一个毫无意义的问题,因为在Python中,数字与元组之间的比较是没有意义的。如果您的意思是说“宽度或长度小于50”,则使用
or
如果您的意思是“宽度和长度都小于50”,则使用
and
正如注解中提到的,您还需要使用参数调用
random.randrange
,而不仅仅是引用函数并且对于
length
也是如此。