Ответ: Python3output = open(‘output.txt’, ‘w’, encoding=’utf-8′)for line in open(‘input.txt’, ‘r’, encoding=’utf-8′):    output.write(line.upper())