# Create a string with 5,000 peach emojis peach_spam = "🍑" * 5000 # Save it to a text file with open("5000_peaches.txt", "w", encoding="utf-8") as file: file.write(peach_spam) print("File created: 5000_peaches.txt")