Skip to content

Commit

Permalink
Committed miscellaneous files.
Browse files Browse the repository at this point in the history
  • Loading branch information
donald-f-ferguson committed Dec 24, 2024
1 parent c7319dd commit c142dfd
Show file tree
Hide file tree
Showing 13 changed files with 4,002 additions and 25 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,5 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
/Homework-Assignments/Hold_for_Future/
/DONOTSHARE/
Binary file removed Homework-Assignments/HW1/F24-W4111-HW-1-A.pdf
Binary file not shown.
18 changes: 18 additions & 0 deletions Homework-Assignments/HW1/HW1A/HW1B_Code.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import pandas
import json


def load_json(file_name):
with open(file_name, "r") as in_file:
result = json.load(in_file)
return j


def t1():
fn = "lor_character_interactions.json"
c_d = load_json(fn)
print("Data = \n", c_d)


if __name__ == "__main__":
t1()
Loading

0 comments on commit c142dfd

Please sign in to comment.