├── .gitignore ├── README.md ├── atm.py ├── cows_and_bulls_game.py ├── currency_converter.py ├── dice_rolling_game.py ├── number_guessing_game.py ├── password_generator.py ├── password_strength_checker.py ├── pig_dice_game.py ├── qr_code_generator.py ├── quiz_game.py ├── rock_paper_scissor.py ├── simple_text_editor.py ├── slot_machine.py ├── tic_tac_toe.py ├── todo_list.py ├── word_guessing_game.py └── words.txt /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/README.md -------------------------------------------------------------------------------- /atm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/atm.py -------------------------------------------------------------------------------- /cows_and_bulls_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/cows_and_bulls_game.py -------------------------------------------------------------------------------- /currency_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/currency_converter.py -------------------------------------------------------------------------------- /dice_rolling_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/dice_rolling_game.py -------------------------------------------------------------------------------- /number_guessing_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/number_guessing_game.py -------------------------------------------------------------------------------- /password_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/password_generator.py -------------------------------------------------------------------------------- /password_strength_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/password_strength_checker.py -------------------------------------------------------------------------------- /pig_dice_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/pig_dice_game.py -------------------------------------------------------------------------------- /qr_code_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/qr_code_generator.py -------------------------------------------------------------------------------- /quiz_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/quiz_game.py -------------------------------------------------------------------------------- /rock_paper_scissor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/rock_paper_scissor.py -------------------------------------------------------------------------------- /simple_text_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/simple_text_editor.py -------------------------------------------------------------------------------- /slot_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/slot_machine.py -------------------------------------------------------------------------------- /tic_tac_toe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/tic_tac_toe.py -------------------------------------------------------------------------------- /todo_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/todo_list.py -------------------------------------------------------------------------------- /word_guessing_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosh-hamedani/python-projects-for-beginners/HEAD/word_guessing_game.py -------------------------------------------------------------------------------- /words.txt: -------------------------------------------------------------------------------- 1 | elephant 2 | giraffe 3 | python 4 | jazz 5 | astronaut --------------------------------------------------------------------------------