Как записать в файл в Python без удаления всего контента

file = open("FILE_NAME.txt", "w+") # opens the file in both read and write mode
Fair Finch