3
It is possible to open more than one file in a program with
with open("meutexto.txt", "r") as f:
I didn’t find anything about it (or didn’t look hard enough). I know it’s possible to do otherwise:
var = open("meutexto.txt", "r")
var_dois = open("meu_segundo_texto.txt", "r")
var_tres = open("meu_terceiro_texto", "r")
But I wonder if it’s possible with the with open