Вопрос задан 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 rules you provided. 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 # Test cases print(points(['1:0','2:0','3:0','4:0','2:1','3:1','4:1','3:2','4:2','4:3'])) # Output: 30 print(points(['1:1','2:2','3:3','4:4','2:2','3:3','4:4','3:3','4:4','4:4'])) # Output: 10 print(points(['0:1','0:2','0:3','0:4','1:2','1:3','1:4','2:3','2:4','3:4'])) # Output: 0 print(points(['1:0','2:0','3:0','4:0','2:1','1:3','1:4','2:3','2:4','3:4'])) # Output: 15 print(points(['1:0','2:0','3:0','4:4','2:2','3:3','1:4','2:3','2:4','3:4'])) # Output: 12

This function takes a list of match results as input and iterates through each match, calculating the points based on the provided rules and accumulating the total points.

0 0

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

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

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

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