File size: 216 Bytes
b7835d9
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#%%

def File(file_path):
    with open(file_path, 'r', encoding='utf-8') as file:
        return file.read()

# Example usage:
# file_contents = load_file_as_string('path/to/your/file.txt')
# print(file_contents)