Good morning. I am a beginner in Python language, I use in Windows 8.1, id Pycharm, version 3.6.4. At first opening the file has not been the problem before, it converts it to integer. Only then can I establish the desired filters. I started to see the pandas library models for opening but it was not quite what I need.
arquivo = open('jogos.txt', 'r')
# EXEMPLO DO ARQUIVO: 1600 (11/02/2014) 50 56 10 35 30 21 20 58
# 1610 (10/03/2014) 02 12 11 54 35 36 60 55
# vários sorteios até 1620 (20/04/2014) 40 15 12 17 25 51 38 24
# E como converter de strings para números inteiros.
for linha in arquivo:
print(linha)
arquivo.close()
# E depois pode selecionar o sorteios desejados, para estabelecer que tipo de filtros quero aplicar.