I have 2 different text files.
File1.txt contains:
program
RAM
Python
parser
File2.txt contains:
file
1234
program
I want to perform an union of these both files such that i get an output file3.txt which contains:
program
RAM
Python
parser
file
1234
Is it possible to program this in python? I use python 2.7