I am new to python and has been trying to make this algorithm but couldn't figure it out. How could I make a list of every possible word made of a-Z, so that it goes like
a, b, c, d, e.... aa, ab, ac, ad... aaa, aab, aac...The purpose of doing this, is to encode every word into md5 hash and repeat this until finding a hash code that has a specific prefix.
So, how could I achieve this? Thank you in advance for your help!