![]() |
help me to make my password list in python >>> - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: help me to make my password list in python >>> (/thread-39039.html) |
help me to make my password list in python >>> - Oktay34riza - Dec-23-2022 hii am new here i want to make my own password listbut i have some problems i write this """Start import itertools names= ["sushi","messi","barcelona","2022","worldcup","pes","fifa","ronaldo"] pas_words = itertools.permutations(names) with open ("pass.txt","a") as myfile: for pas in pas_words: pas_word ="".join(pas) myfile.write(pas_word + "\n")"""""finish this code using all the 8 name to make passList I Want the code use 7 name and 6 and 5 names with all possibility to make passList how can i write to work ????? |