Следующая реализация работает должным образом:
input = [(532, 'working'), (417, 'texting')]
with open("output.txt", "w") as opened_file:
for element in input:
opened_file.write("%s %s\n" % (element[0], element[1]))
Вывод:
>>>cat output.txt
532 working
417 texting