Leer desde el archivo de texto y agregar en la lista

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