def tests_for_hw2_solution1(): u"""Набор простых тестов для решения задачи 1 ДЗ#2""" assert hw2_solution1.squares_1([1, 2, 3]) == [1, 4, 9] # "assert" проверяет является ли True переданное выражение assert hw2_solution1.squares_1((1, 2, 3)) == (1, 4, 9) assert hw2_solution1.squares_2([1, 2, 3]) == [1, 4, 9] assert hw2_solution1.squares_2((1, 2, 3)) == (1, 4, 9) assert hw2_solution1.squares_3([1, 2, 3]) == [1, 4, 9] assert hw2_solution1.squares_3((1, 2, 3)) == (1, 4, 9)
def tests_for_hw2_solution1(): u"""Набор простых тестов для решения задачи 1 ДЗ#2""" assert hw2_solution1.squares_1( [1, 2, 3]) == [1, 4, 9] # "assert" проверяет является ли True переданное выражение assert hw2_solution1.squares_1((1, 2, 3)) == (1, 4, 9) assert hw2_solution1.squares_2([1, 2, 3]) == [1, 4, 9] assert hw2_solution1.squares_2((1, 2, 3)) == (1, 4, 9) assert hw2_solution1.squares_3([1, 2, 3]) == [1, 4, 9] assert hw2_solution1.squares_3((1, 2, 3)) == (1, 4, 9)
def runner(): u"""Запускает выполнение всех задач""" print INPUT_1, ">>", hw2_solution1.squares_1(INPUT_1) print INPUT_1, ">>", hw2_solution1.squares_2(INPUT_1) print INPUT_1, ">>", hw2_solution1.squares_3(INPUT_1) print INPUT_2A, ">>", hw2_solution2.symmetry_1(INPUT_2A) print INPUT_2B, ">>", hw2_solution2.symmetry_2(INPUT_2B)