这里是初学者,我已经坚持了半个小时,所以只要它可以工作,即使是最差的版本也可以。 在页面here的末尾进行第四次练习时,我无法编写该函数。
因此,我需要一个具有点(X,Y)并确定其是否在已经设置了比例的矩形内的函数。
r = Rectangle(Point(0, 0), 9, 3) #x, y, width, height
r.contains(74, 0)
使用
运行{{1}}
不会产生任何结果,python只会跳过它。 如果您错过了非常清楚的内容,我表示歉意,谢谢!
答案 0 :(得分:-1)
def contains(self, x, y):
if x < self.width and x >= 0:
if y < self.height and y >= 0:
print("The point is in the rectangle")
else:
print("The point is not in the rectangle")
else:
print("The point is not in the rectangle")
我认为您忘记按照问题参考打印! 如果您有解决方案,请标记为答案:)