Вопрос задан 28.06.2023 в 18:44. Предмет Информатика. Спрашивает Аяпбек Альбина.

Our football team finished the championship. The result of each match look like "x:y". Results of

all matches are recorded in the collection. For example: ["3:1", "2:2", "0:1", ...] ответы должны быть примерно вот такими:Test.assert_equals(points(['1:0','2:0','3:0','4:0','2:1','3:1','4:1','3:2','4:2','4:3']), 30)Test.assert_equals(points(['1:1','2:2','3:3','4:4','2:2','3:3','4:4','3:3','4:4','4:4']), 10)Test.assert_equals(points(['0:1','0:2','0:3','0:4','1:2','1:3','1:4','2:3','2:4','3:4']), 0)Test.assert_equals(points(['1:0','2:0','3:0','4:0','2:1','1:3','1:4','2:3','2:4','3:4']), 15)Test.assert_equals(points(['1:0','2:0','3:0','4:4','2:2','3:3','1:4','2:3','2:4','3:4']), 12)Write a function that takes such collection and counts the points of our team in the championship. Rules for counting points for each match:if x>y - 3 pointsif xif x=y - 1 point
0 0
Перейти к ответам

Ответы на вопрос

Внимание! Ответы на вопросы дают живые люди. Они могут содержать ошибочную информацию, заблуждения, а также ответы могут быть сгенерированы нейросетями. Будьте внимательны. Если вы уверены, что ответ неверный, нажмите кнопку "Пожаловаться" под ответом.
Отвечает Оболонина Диана.

Ответ:

if x$y-4 points.

Объяснение:

потому что x$y , надо просто 3+4 и всё

0 0
Отвечает нейросеть ChatGpt. Будьте внимательны, ответы нейросети могут содержать ошибочные или выдуманные данные.

You can create a Python function to calculate the points for your football team based on the given rules. Here's a sample implementation:

python
def points(matches): total_points = 0 for match in matches: x, y = map(int, match.split(':')) if x > y: total_points += 3 elif x == y: total_points += 1 return total_points

You can use this function to calculate the points for your team by passing a list of match results to it. For example:

python
result1 = points(['1:0', '2:0', '3:0', '4:0', '2:1', '3:1', '4:1', '3:2', '4:2', '4:3']) print(result1) # Output should be 30 result2 = points(['1:1', '2:2', '3:3', '4:4', '2:2', '3:3', '4:4', '3:3', '4:4', '4:4']) print(result2) # Output should be 10 result3 = points(['0:1', '0:2', '0:3', '0:4', '1:2', '1:3', '1:4', '2:3', '2:4', '3:4']) print(result3) # Output should be 0

You can call the points function with different lists of match results to calculate the points for your football team in the championship.

0 0

Похожие вопросы

Топ вопросов за вчера в категории Информатика

Последние заданные вопросы в категории Информатика

Задать вопрос