janela=[]
leitura = ""
for i in range(1, 100):
    if len(leitura) % i == 0:
        janela.append(i)

#https://pt.stackoverflow.com/q/394093/101