Posts by Gabriel Jose • 11 points
1 post
-
1
votes2
answers6889
viewsA: how to find and change a specific python line?
path = 'C:\\seu_Diretorio\\' # Caminho do diretorio files = [ f for f in os.listdir(path) if os.path.isfile(os.path.join(path, f)) ] # Varrendo cada arquivo filesLen = len(files) # Pegando o numero…
pythonanswered Gabriel Jose 11