print "\nReading characters from a line."text_file = open("read_it.txt", "r")print text_file.readline(1)print text_file.readline(5)text_file.close()