# name.txt david mary john with open('names.txt', 'r') as f: myNames = [line.strip() for line in f] # Result ['david','mary','john']