Baca dari file teks dan tambahkan dalam daftar

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