#TeCoEd @dan_aldred
#Reading data from a text File
#18/04/2013

import time

file_name = raw_input("Please enter the name of the file you wish to read: ")
#allows user to select the text file that they want to be read
file_obj = open(file_name + ".txt")#opens file
x = file_obj.read()#reads file contents
print x #prints the contents of the text file
time.sleep(5)
