I have a TXT file which contains 100000 lines of short strings from 1-3 digits long. I need a for loop that loops 100000 times, and in the loop I need to read a line then add it to an array and finally move down to the next line. The txt file is called Rand_Numbers and I have opened it as...
C_txt = open("Rand_Numbers", "r")
I don't really know how to do much in python as i'm fairly new to the programming scene. Any help is much appreciated.