✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
¿Qué muestra el siguiente programa?
f = open('poem.txt', 'r')line = f.readline()while line != '': print(line[::-1], end='') line = f.readline()f.close()