Skip to content

Instantly share code, notes, and snippets.

View mjlyons's full-sized avatar

Mike Lyons mjlyons

View GitHub Profile
for data_filename in data_filenames:
data_filepath = os.path.join(data_dirpath, data_filename)
data_file = open(data_filepath)
data_contents = data_file.read()
print(data_contents)