I'm reading this lines from a file
yara_rule1:
rule match:
problem:
yara_rule2:
rule match:
problem:
when I print it into console the spaces before "rule match" and "problem" are omitted . what is the problem
input_data = open(file)
for line in input_data:
print line.strip()