I am working with deep learning project in JUPYTER NOTEBOOK
# Loading a text file into memory
def load_doc(filename):
    # Opening the file as read only
    file = open("C:\\Users\Project\Flickr8k.token.txt", "r")
    text = file.read()
    file.close()
    return text
By using function I need to load a File and display a File Contents but not getting any output.