discussion on how we can use statistical methods to measure and improve the efficacy of http://freeCodeCamp.com
@mmalinda welcome!
Bioinformatics related, here are some I've found useful:
If you have specific questions for bioinformatic data science, feel free to ask around here :smile:
...there's not much to the guidelines here, just be friendly, don't veer too far off topic, and no self-promotion. You can have a quick read through the Code of Conduct if you'd like :)
"...no self-promotion." @becausealice2 Lol whoops. I hope my earlier link wasn't too self-promotion-y! (Aren't I a moderator too? I should know the bounds too haha.) Just sharing an analysis I thought others might be interested in seeing :smile:
# Create en empty Dict
file_dict = {}
txt_files = [i for i in os.listdir(direct + '\\' + my_dir_path) if os.path.splitext(i)[1] == ext]
# Iterate over the txt files selected.
for f in txt_files:
# print(f)
# Open them an assign to the empty Dict.
with open(os.path.join(direct + '\\' + my_dir_path, f)) as file_object:
file_dict['mic' + f.strip('.txt')] = file_object.read()
Programming Help
category of FreeCodeCamp's forum