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

Check tests #2

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Check tests #2

wants to merge 4 commits into from

Conversation

Ivelok
Copy link

@Ivelok Ivelok commented Jun 15, 2018

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.

Почти все хорошо.

В целом, print-ы для отладки можно оставить, но в рабочем коде они обычно не нужны - во-первых, их некому читать, во-вторых, print - не очень гибкий инструмент для этой цели. Когда у тебя есть задача сделать функцию, которая выводит данные на экран - print подходит, а когда задача написать фукнцию, которая вычисляет данные - print внутри не нужен.

Ну и в 3 решении небольшая бага. p1 и p2 берутся не оттуда.

@@ -5,7 +5,9 @@ def test_even_fucntion():
"""

def even_filter(*args):
pass
even = [arg for arg in args if arg % 2 == 0]
print(even)
Copy link
Contributor

Choose a reason for hiding this comment

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

print() здесь лишний. В рабочем коде у тебя функция будет печатать на консоль какие-то данные, хотя должна только возвращать значения (return).

@@ -44,7 +51,9 @@ def __init__(self, p1, p2):
pass

def length(self):
return 0
dist = math.hypot(p2.x - p1.x, p2.y - p1.y)
Copy link
Contributor

Choose a reason for hiding this comment

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

Здесь идет работа с переменными снаружи класса Segment (т.е. у тебя класс сломается, как только их переименуют в point1 и point2). Нужно честно записать их в self в __init__-методе, и работать с ними также через self.

Copy link
Author

Choose a reason for hiding this comment

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

Кажется починил (:

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