i have a txt files with a few thousands of words in it (one word in a line). iv'e written a function which take two words (strings), and checks if one word is an Anagram of the other (that means if the two words contains the same letters, even if in different order.
now i want to go over my huge txt file and search for Anagrams. my output should be a list which contains touples of couple of words which are Anagrams.
the problem is that i have no idea how to go over the words with a for/while loop. everything iv'e tried failed. (i'm clear with the way of doing it, but i just don't know python well enough).
thanks for any help ! Orr
edit#1: assuming i want to go over lines 1 to 100 in the text instead of the whole text. how do i do that ?