(words,i)
| 43 | |
| 44 | # the actual function that crates combinations |
| 45 | def createcombs(words,i): |
| 46 | global f |
| 47 | # pass the string to be combined and length of password |
| 48 | for c in itertools.combinations(words,i): |
| 49 | t = "".join(c) |
| 50 | f.write(t + "\n") |
| 51 | # print(t) |
| 52 | |
| 53 | |
| 54 | # the function to check for available and empty disk space |