├── .gitignore ├── README.md ├── alarm ├── README.md └── main.py ├── binary-file-info ├── README.md ├── assets │ ├── deceptive01.txt │ ├── deceptive02.png │ ├── deceptive03.pdf │ ├── deceptive04.txt │ ├── test01.pdf │ ├── test02.gif │ ├── test03.png │ ├── test04.jpeg │ └── test05.txt ├── main.py └── test_main.py ├── bmi-calculator ├── README.md └── bmi_calculator.py ├── calculator ├── README.md ├── main.py └── test_main.py ├── clipboard ├── README.md ├── clip.py ├── clipboard.py └── test_main.py ├── currency-converter ├── README.md └── main.py ├── dice-rolling-simulator ├── README.md ├── dice_simulator.py └── test_main.py ├── directory-maintainer ├── README.md ├── backlog │ ├── 20221001_component_z.log │ ├── 20221002_component_x.log │ ├── 20221003_component_y.log │ ├── books.pdf │ ├── botany_clean.log │ ├── botany_raw.log │ ├── employees_i.txt │ ├── employees_ii.txt │ ├── horticulture_raw.log │ ├── sheet_1.csv │ ├── sheet_2.csv │ ├── zoology_clean.log │ └── zoology_raw.log └── main.py ├── expense-tracker ├── README.md ├── main.py └── test_main.py ├── generate-random-quiz-files ├── README.md ├── dict.py ├── main.py └── test_main.py ├── guess-number ├── .gitignore ├── README.md └── main.py ├── hangman-game ├── README.md ├── main.py └── test_main.py ├── microprocessor ├── README.md ├── main.py ├── samples │ ├── sample1.txt │ ├── sample2.txt │ └── sample3.txt └── test_main.py ├── passord-generator ├── README.md ├── main.py └── test_main.py ├── phonebook ├── README.md ├── main.py └── test_main.py ├── temperature-converter ├── README.md ├── main.py └── test_main.py ├── tic-tac-toe ├── README.md └── main.py ├── to-do-list ├── README.md ├── main.py └── test_main.py ├── website-scraper ├── README.md └── main.py └── word-counter ├── README.md ├── main.py └── test_main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/README.md -------------------------------------------------------------------------------- /alarm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/alarm/README.md -------------------------------------------------------------------------------- /alarm/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/alarm/main.py -------------------------------------------------------------------------------- /binary-file-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/binary-file-info/README.md -------------------------------------------------------------------------------- /binary-file-info/assets/deceptive01.txt: -------------------------------------------------------------------------------- 1 | Test File! -------------------------------------------------------------------------------- /binary-file-info/assets/deceptive02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/binary-file-info/assets/deceptive02.png -------------------------------------------------------------------------------- /binary-file-info/assets/deceptive03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/binary-file-info/assets/deceptive03.pdf -------------------------------------------------------------------------------- /binary-file-info/assets/deceptive04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/binary-file-info/assets/deceptive04.txt -------------------------------------------------------------------------------- /binary-file-info/assets/test01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/binary-file-info/assets/test01.pdf -------------------------------------------------------------------------------- /binary-file-info/assets/test02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/binary-file-info/assets/test02.gif -------------------------------------------------------------------------------- /binary-file-info/assets/test03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/binary-file-info/assets/test03.png -------------------------------------------------------------------------------- /binary-file-info/assets/test04.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/binary-file-info/assets/test04.jpeg -------------------------------------------------------------------------------- /binary-file-info/assets/test05.txt: -------------------------------------------------------------------------------- 1 | Test File! -------------------------------------------------------------------------------- /binary-file-info/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/binary-file-info/main.py -------------------------------------------------------------------------------- /binary-file-info/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/binary-file-info/test_main.py -------------------------------------------------------------------------------- /bmi-calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/bmi-calculator/README.md -------------------------------------------------------------------------------- /bmi-calculator/bmi_calculator.py: -------------------------------------------------------------------------------- 1 | 2 | if __name__ == '__main__': 3 | pass -------------------------------------------------------------------------------- /calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/calculator/README.md -------------------------------------------------------------------------------- /calculator/main.py: -------------------------------------------------------------------------------- 1 | 2 | # Write your code here 3 | if __name__ == '__main__': 4 | pass -------------------------------------------------------------------------------- /calculator/test_main.py: -------------------------------------------------------------------------------- 1 | # Write your tests here -------------------------------------------------------------------------------- /clipboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/clipboard/README.md -------------------------------------------------------------------------------- /clipboard/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/clipboard/clip.py -------------------------------------------------------------------------------- /clipboard/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/clipboard/clipboard.py -------------------------------------------------------------------------------- /clipboard/test_main.py: -------------------------------------------------------------------------------- 1 | # Write your tests here -------------------------------------------------------------------------------- /currency-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/currency-converter/README.md -------------------------------------------------------------------------------- /currency-converter/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dice-rolling-simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/dice-rolling-simulator/README.md -------------------------------------------------------------------------------- /dice-rolling-simulator/dice_simulator.py: -------------------------------------------------------------------------------- 1 | # Write your code here 2 | if __name__ == '__main__': 3 | pass -------------------------------------------------------------------------------- /dice-rolling-simulator/test_main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/directory-maintainer/README.md -------------------------------------------------------------------------------- /directory-maintainer/backlog/20221001_component_z.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/backlog/20221002_component_x.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/backlog/20221003_component_y.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/backlog/books.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/backlog/botany_clean.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/backlog/botany_raw.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/backlog/employees_i.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/backlog/employees_ii.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/backlog/horticulture_raw.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/backlog/sheet_1.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/backlog/sheet_2.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/backlog/zoology_clean.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/backlog/zoology_raw.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directory-maintainer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/directory-maintainer/main.py -------------------------------------------------------------------------------- /expense-tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/expense-tracker/README.md -------------------------------------------------------------------------------- /expense-tracker/main.py: -------------------------------------------------------------------------------- 1 | # Write your code here 2 | if __name__ == '__main__': 3 | pass -------------------------------------------------------------------------------- /expense-tracker/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/expense-tracker/test_main.py -------------------------------------------------------------------------------- /generate-random-quiz-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/generate-random-quiz-files/README.md -------------------------------------------------------------------------------- /generate-random-quiz-files/dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/generate-random-quiz-files/dict.py -------------------------------------------------------------------------------- /generate-random-quiz-files/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/generate-random-quiz-files/main.py -------------------------------------------------------------------------------- /generate-random-quiz-files/test_main.py: -------------------------------------------------------------------------------- 1 | # Write your test files here -------------------------------------------------------------------------------- /guess-number/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /guess-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/guess-number/README.md -------------------------------------------------------------------------------- /guess-number/main.py: -------------------------------------------------------------------------------- 1 | 2 | if __name__ == '__main__': 3 | pass -------------------------------------------------------------------------------- /hangman-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/hangman-game/README.md -------------------------------------------------------------------------------- /hangman-game/main.py: -------------------------------------------------------------------------------- 1 | # Write your code here 2 | if __name__ == '__main__': 3 | pass -------------------------------------------------------------------------------- /hangman-game/test_main.py: -------------------------------------------------------------------------------- 1 | # Write your tests here -------------------------------------------------------------------------------- /microprocessor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/microprocessor/README.md -------------------------------------------------------------------------------- /microprocessor/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/microprocessor/main.py -------------------------------------------------------------------------------- /microprocessor/samples/sample1.txt: -------------------------------------------------------------------------------- 1 | add 8 16 2 | mul 10 3 3 | or 1 0 4 | nand 1 1 5 | -------------------------------------------------------------------------------- /microprocessor/samples/sample2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/microprocessor/samples/sample2.txt -------------------------------------------------------------------------------- /microprocessor/samples/sample3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/microprocessor/samples/sample3.txt -------------------------------------------------------------------------------- /microprocessor/test_main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /passord-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/passord-generator/README.md -------------------------------------------------------------------------------- /passord-generator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/passord-generator/main.py -------------------------------------------------------------------------------- /passord-generator/test_main.py: -------------------------------------------------------------------------------- 1 | # Write your tests here -------------------------------------------------------------------------------- /phonebook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/phonebook/README.md -------------------------------------------------------------------------------- /phonebook/main.py: -------------------------------------------------------------------------------- 1 | # Write your code here 2 | if __name__ == '__main__': 3 | pass -------------------------------------------------------------------------------- /phonebook/test_main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /temperature-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/temperature-converter/README.md -------------------------------------------------------------------------------- /temperature-converter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/temperature-converter/main.py -------------------------------------------------------------------------------- /temperature-converter/test_main.py: -------------------------------------------------------------------------------- 1 | # Write your tests here -------------------------------------------------------------------------------- /tic-tac-toe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/tic-tac-toe/README.md -------------------------------------------------------------------------------- /tic-tac-toe/main.py: -------------------------------------------------------------------------------- 1 | # Write your code here 2 | if __name__ == '__main__': 3 | pass -------------------------------------------------------------------------------- /to-do-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/to-do-list/README.md -------------------------------------------------------------------------------- /to-do-list/main.py: -------------------------------------------------------------------------------- 1 | # Write your function here 2 | 3 | if __name__ == '__main__': 4 | pass -------------------------------------------------------------------------------- /to-do-list/test_main.py: -------------------------------------------------------------------------------- 1 | # Write your tests here -------------------------------------------------------------------------------- /website-scraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/website-scraper/README.md -------------------------------------------------------------------------------- /website-scraper/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/website-scraper/main.py -------------------------------------------------------------------------------- /word-counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/word-counter/README.md -------------------------------------------------------------------------------- /word-counter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praise002/20-python-project/HEAD/word-counter/main.py -------------------------------------------------------------------------------- /word-counter/test_main.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------