This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# | |
# Take a user provided integer and find all of the possible factors for that number. | |
# | |
# Notes: | |
# Does not find the factors of negative numbers. | |
# | |
# Version: v1.1.3 | |
# License: MIT License | |
# Copyright (c) 2020-2021 Hunter T. (StrangeRanger) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import string | |
accepted_keywords = [ | |
"(nothing)", | |
"abc", | |
"deft", | |
"ghi", | |
"jkl", | |
"mno", |
NewerOlder