Skip to content
This repository has been archived by the owner on Oct 16, 2019. It is now read-only.

kate'e homework #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

eshulyndina
Copy link

No description provided.

Copy link
Contributor

@wronglink wronglink left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

В третьем задании небольшая ошибка. В остальном все хорошо.

@@ -41,10 +50,13 @@ def __init__(self, x, y):

class Segment():
def __init__(self, p1, p2):
pass
self.p1 = p1.x
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Здесь и следующая строчка в значение self.p1 записывается не p1, а p1.x, поэтому в self.p1 сохраняется не объект Point с двумя координатами, а именно координата x объекта Point.

Поэтому в функции length() ниже происходит ошибка при попытке получить self.p1.x - ведь мы получаем x у числа.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants