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
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions homework/tests.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
import math


def test_even_fucntion():
"""
Необходимо реализовать функцию even_filter, которая получает неограниченное количество аргументов
и возвращает из них только четные.
"""

def even_filter(*args):
pass
result = []
for i in args:
if i % 2 == 0:
result.append(i)
return result

assert even_filter(1, 2, 3, 4, 5, 6) == [2, 4, 6]

Expand All @@ -16,7 +23,9 @@ def test_increment_decorator():
декрорируемую функцию.
"""
def increment_derocator(func):
pass
def wrapper(value):
return func(value + 1)
return wrapper

@increment_derocator
def returner(value):
Expand All @@ -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 у числа.

self.p2 = p2.x


def length(self):
return 0
value = math.sqrt(math.pow(self.p1.x - self.p2.x, 2) + math.pow(self.p1.y - self.p2.y))
return value

p1 = Point(0, 0)
p2 = Point(3, 4)
Expand Down