Is it possible to dynamically create loops in Python and store some values?
For example a 2 loop of loops:
for word1 in word_list:
for word2 in word_list:
final_word=word1+word2
A three loop of loops:
for word1 in word_list:
for word2 in word_list:
for word3 in word_list:
final_word=word1+word2+word3