MCPcopy Create free account
hub / github.com/SR-Sunny-Raj/Hacktoberfest2021-DSA / createcombs

Function createcombs

33. Python Programs/password generator.py:45–51  ·  view source on GitHub ↗
(words,i)

Source from the content-addressed store, hash-verified

43
44# the actual function that crates combinations
45def 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

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected