Question: python Problem I- Brute Forcing a Password Part I: You need to generate a file containing all possible combinations of phrases using all possible inputs.
Problem I- Brute Forcing a Password Part I: You need to generate a file containing all possible combinations of phrases using all possible inputs. Limit the length of the combinations to be between 4 and 6 characters. Part II: Use the previously generated file in part one to find a password. You will do so by generating a random password between 4 and 6 characters using all possible inputs, and then storing it into a variable and attempting to match it to one of the entries in the file. Record the time taken to find a match. NOTE: the only libraries you are allowed to use are random", "time" and "sting" Problem II- Sorting Implement a sorting method to take a text document and arrange all the occurrences of a letter in alphabetical order. If your text is: I love coding with python Your output should be: cdehhgiiilnnooopttvwy Note: Your text should be at least 100 words Let your program remove punctuation
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
