Created
June 5, 2020 07:56
-
-
Save arunm8489/eae9d7b36cc5f1f5fbcd83de756534e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # function to load the classes | |
| def load_classes(class_file): | |
| fp = open(class_file, "r") | |
| names = fp.read().split("\n")[:-1] | |
| return names |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment