Ответ:
из functools импортировать уменьшить
с open('prices.txt') как f:
файл = открыть ('prices.txt', режим = 'r', кодировка = 'utf-8')
print(reduce(lambda x, y: x + int(y[1]) * int(y[2]), [i.split('\t') for i in [i.strip() for i in file .readlines()]], 0))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
из functools импортировать уменьшить
с open('prices.txt') как f:
файл = открыть ('prices.txt', режим = 'r', кодировка = 'utf-8')
print(reduce(lambda x, y: x + int(y[1]) * int(y[2]), [i.split('\t') for i in [i.strip() for i in file .readlines()]], 0))