Loop
my_file = open("D:\\IEEE\\AuthorIDs.txt", "r")
data = my_file.read()
AuthorsList = data.split("\n")
my_file.close()
my_file = open("D:\\IEEE\\AuthorIDs.txt", "r")
data = my_file.read()
AuthorsList = data.split("\n")
my_file.close()