私が取り組んでいるpython辞書メーカーがあります。私はそれを一緒につなぎましたが、私は助けが必要です。私はそれをテキストファイルまたは出力に提出すると、新しいものの前に重複する単語があります。私が取得いけないものを助けるために、出力をcPythonの出力で重複を取り除く方法
または( B する必要が B C
:たとえば、これは一回出力することができそれは)別の出力例を示します。
ときにそれが必要BCA ABC CBA ABC CBA :等々 AAA AAB AAC ABA ABB、ABC ACA ACB ACC BAA
と。
誰でも手伝ってもらえますか?これは
import string, random
minimum=input('Please enter the minimum length of any give word to be generated: ')
maximum=input('Please enter the maximum length of any give word to be generated: ')
wmaximum=input('Please enter the max number of words to be generate in the dictionary: ')
alphabet =raw_input("What characters should we use to generate the random words?: ")
string=''
FILE = open("wordlist.txt","w")
for count in xrange(0,wmaximum):
for x in random.sample(alphabet,random.randint(minimum,maximum)):
string+=x
FILE.write(string+'\n')
string=''
print''
FILE.close()
print 'DONE!'
end=raw_input("Press Enter to exit")
あなたの質問は不明です。サンプル入力とサンプル出力を含めます。 – MYGz
['itertools.product'](https://docs.python.org/2/library/itertools.html#itertools.product)を参考にしてください。 –