“Instale o módulo Python Glob no Windows” Respostas de código

Instale o módulo Python Glob no Windows

pip install glob2
Pythonist

Como usar o módulo Glob Python


import glob
# path of the current directory
path = '.'
curfiles = glob.glob(path + '/*.html')
for file in curfiles:
    print(file)
    

Respostas semelhantes a “Instale o módulo Python Glob no Windows”

Perguntas semelhantes a “Instale o módulo Python Glob no Windows”

Procure respostas de código populares por idioma

Procurar outros idiomas de código