#!/usr/bin/env python

f = open ('./data_file' , 'r')

for line in f:
    print line

print 'hahaha'
