Leia no arquivo de texto e anexa na lista

with open('names.txt', 'r') as f:
    myNames = [line.strip() for line in f]
Clear Copperhead