Skip to content

Instantly share code, notes, and snippets.

with open('log.txt', 'r') as file:
for line in file.readlines():
print(line)
start_point = 0
words = line.split(' ')
results = []
for i in range(0, len(words)):
word = words[i]
if ':' in words[i]:
temp = dict()