Python Loop

Posted by Valuex on May 24, 2023

Loop

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