Skip to content

Instantly share code, notes, and snippets.

View StewSchrieff's full-sized avatar

Stewart Schrieffer StewSchrieff

View GitHub Profile
import pandas as pd
import itertools, time, string
fname = "enable1.txt"
def read_in_word_list(fname):
data = []
with open(fname, "r") as word_list:
for w in word_list:
w = w.rstrip('\n')