Something like this should work:
# read first file
with open('file1.csv', 'r') as txt:
lines = txt.readlines()
# extend the list with the lines from the second file
with open('file2.csv', 'r') as txt:
lines.extend(txt.readlines())
# remove
from the end of each line
lines = [line.strip() for line in lines]
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…