✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Considere o seguinte código escrito na linguagem Python:
f = open('teste.txt', 'r')print(f.tell())print(f.read())print(f.tell())f.close()
Qual o resultado da segunda execução da instrução print(f.tell())?