phrase = "skibidi toilet sigma goofy ahh ohio gyat big chungus sussy baka gigachad fanum tax fortnite battle pass rizz" repetitions = 10000 result = (phrase + " ") * repetitions with open("output.txt", "w") as file: file.write(result) print("The phrase has been written to output.txt")