xxxxxxxxxx
# Creating a file with the word "book" repeated 1000 times, each on a separate line
file_content = "book\n" * 1000
file_path = '/mnt/data/book_repeated_1000_times.txt'
# Writing the content to a file
with open(file_path, 'w') as file:
file.write(file_content)
file_path