Objective : Create a word generator that will create every single word possible with the 52 letters of the alphabet up until 8 chars.
I know that basic is, the generator have to be able to make x(amount of baseline in this case the alphabet) to the power of 8 but i can't put that in the right amount of code, sample :
alphabet = "abcdefghijklmnopqrstuvwxyz"
or
alphabet = ["a","b","c","d","e","f","g","h","i","j","k","l","m","n",...] # u get the point
and for each element in the variable of array :
for i in alphabet:
wordlist.append(something)
that will create something like :
a ab ac ad ... aba abc abd ... abcd ... zzzzzzzz