├── .gitignore ├── Challenges ├── ChallengeSolutions │ ├── __init__.py │ ├── challenge_1_mad_libs.py │ ├── challenge_2_number_guess.py │ ├── challenge_2b_number_guess_with_while.py │ ├── challenge_2c_number_guess_with_for.py │ ├── challenge_3_word_guess.py │ ├── challenge_3b_word_guess_from_file.py │ ├── challenge_3c_word_guess_with_nested_functions.py │ ├── challenge_3d_word_guess_with_classes.py │ ├── challenge_3e_word_guess_refactored.py │ ├── challenge_3e_word_guess_tests.py │ └── words.txt ├── __init__.py ├── challenge_1_mad_libs.py ├── challenge_2_number_guess.py └── challenge_3_word_guess.py ├── Examples ├── example_10_if_else.py ├── example_11_while_loops.py ├── example_12_lists.py ├── example_13_for_loops.py ├── example_1_first_code.py ├── example_2_types.py ├── example_3_variables.py ├── example_4_syntax.py ├── example_5_functions.py ├── example_6_string_methods.py ├── example_7_math_comparisons.py ├── example_8_boolean_comparisons.py └── example_9_other_comparisons.py ├── Problems ├── Solutions │ ├── __init__.py │ ├── problem_1_equation_calculator.py │ ├── problem_2_happy_birthday.py │ ├── problem_3_temperature_converter.py │ ├── problem_4_dice_roll.py │ ├── problem_5_circle_stats.py │ ├── problem_6_lucky_number_guess.py │ ├── problem_7_new_years.py │ ├── problem_8_for_bug.py │ └── problem_9_card_hands.py ├── __init__.py ├── problem_1_equation_calculator.py ├── problem_2_happy_birthday.py ├── problem_3_temperature_converter.py ├── problem_4_dice_roll.py ├── problem_5_circle_stats.py ├── problem_6_lucky_number_guess.py ├── problem_7_new_years.py ├── problem_8_for_bug.py └── problem_9_card_hands.py ├── README.md └── docs ├── PATH_LOCATIONS.md ├── PyCharm_interpreter.md ├── WININSTALL.md ├── WINSETPATH.md └── img ├── installer_1.png ├── installer_2.png ├── installer_3.png ├── pycharm_python_1.png ├── pycharm_python_2.png ├── pycharm_python_3a.png ├── pycharm_python_3b.png ├── pycharm_python_4.png ├── pycharm_python_5a.png └── pycharm_python_5b.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/.gitignore -------------------------------------------------------------------------------- /Challenges/ChallengeSolutions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Challenges/ChallengeSolutions/challenge_1_mad_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/ChallengeSolutions/challenge_1_mad_libs.py -------------------------------------------------------------------------------- /Challenges/ChallengeSolutions/challenge_2_number_guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/ChallengeSolutions/challenge_2_number_guess.py -------------------------------------------------------------------------------- /Challenges/ChallengeSolutions/challenge_2b_number_guess_with_while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/ChallengeSolutions/challenge_2b_number_guess_with_while.py -------------------------------------------------------------------------------- /Challenges/ChallengeSolutions/challenge_2c_number_guess_with_for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/ChallengeSolutions/challenge_2c_number_guess_with_for.py -------------------------------------------------------------------------------- /Challenges/ChallengeSolutions/challenge_3_word_guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/ChallengeSolutions/challenge_3_word_guess.py -------------------------------------------------------------------------------- /Challenges/ChallengeSolutions/challenge_3b_word_guess_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/ChallengeSolutions/challenge_3b_word_guess_from_file.py -------------------------------------------------------------------------------- /Challenges/ChallengeSolutions/challenge_3c_word_guess_with_nested_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/ChallengeSolutions/challenge_3c_word_guess_with_nested_functions.py -------------------------------------------------------------------------------- /Challenges/ChallengeSolutions/challenge_3d_word_guess_with_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/ChallengeSolutions/challenge_3d_word_guess_with_classes.py -------------------------------------------------------------------------------- /Challenges/ChallengeSolutions/challenge_3e_word_guess_refactored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/ChallengeSolutions/challenge_3e_word_guess_refactored.py -------------------------------------------------------------------------------- /Challenges/ChallengeSolutions/challenge_3e_word_guess_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/ChallengeSolutions/challenge_3e_word_guess_tests.py -------------------------------------------------------------------------------- /Challenges/ChallengeSolutions/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/ChallengeSolutions/words.txt -------------------------------------------------------------------------------- /Challenges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Challenges/challenge_1_mad_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/challenge_1_mad_libs.py -------------------------------------------------------------------------------- /Challenges/challenge_2_number_guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/challenge_2_number_guess.py -------------------------------------------------------------------------------- /Challenges/challenge_3_word_guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Challenges/challenge_3_word_guess.py -------------------------------------------------------------------------------- /Examples/example_10_if_else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Examples/example_10_if_else.py -------------------------------------------------------------------------------- /Examples/example_11_while_loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Examples/example_11_while_loops.py -------------------------------------------------------------------------------- /Examples/example_12_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Examples/example_12_lists.py -------------------------------------------------------------------------------- /Examples/example_13_for_loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Examples/example_13_for_loops.py -------------------------------------------------------------------------------- /Examples/example_1_first_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Examples/example_1_first_code.py -------------------------------------------------------------------------------- /Examples/example_2_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Examples/example_2_types.py -------------------------------------------------------------------------------- /Examples/example_3_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Examples/example_3_variables.py -------------------------------------------------------------------------------- /Examples/example_4_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Examples/example_4_syntax.py -------------------------------------------------------------------------------- /Examples/example_5_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Examples/example_5_functions.py -------------------------------------------------------------------------------- /Examples/example_6_string_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Examples/example_6_string_methods.py -------------------------------------------------------------------------------- /Examples/example_7_math_comparisons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Examples/example_7_math_comparisons.py -------------------------------------------------------------------------------- /Examples/example_8_boolean_comparisons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Examples/example_8_boolean_comparisons.py -------------------------------------------------------------------------------- /Examples/example_9_other_comparisons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Examples/example_9_other_comparisons.py -------------------------------------------------------------------------------- /Problems/Solutions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Problems/Solutions/problem_1_equation_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/Solutions/problem_1_equation_calculator.py -------------------------------------------------------------------------------- /Problems/Solutions/problem_2_happy_birthday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/Solutions/problem_2_happy_birthday.py -------------------------------------------------------------------------------- /Problems/Solutions/problem_3_temperature_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/Solutions/problem_3_temperature_converter.py -------------------------------------------------------------------------------- /Problems/Solutions/problem_4_dice_roll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/Solutions/problem_4_dice_roll.py -------------------------------------------------------------------------------- /Problems/Solutions/problem_5_circle_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/Solutions/problem_5_circle_stats.py -------------------------------------------------------------------------------- /Problems/Solutions/problem_6_lucky_number_guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/Solutions/problem_6_lucky_number_guess.py -------------------------------------------------------------------------------- /Problems/Solutions/problem_7_new_years.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/Solutions/problem_7_new_years.py -------------------------------------------------------------------------------- /Problems/Solutions/problem_8_for_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/Solutions/problem_8_for_bug.py -------------------------------------------------------------------------------- /Problems/Solutions/problem_9_card_hands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/Solutions/problem_9_card_hands.py -------------------------------------------------------------------------------- /Problems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Problems/problem_1_equation_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/problem_1_equation_calculator.py -------------------------------------------------------------------------------- /Problems/problem_2_happy_birthday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/problem_2_happy_birthday.py -------------------------------------------------------------------------------- /Problems/problem_3_temperature_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/problem_3_temperature_converter.py -------------------------------------------------------------------------------- /Problems/problem_4_dice_roll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/problem_4_dice_roll.py -------------------------------------------------------------------------------- /Problems/problem_5_circle_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/problem_5_circle_stats.py -------------------------------------------------------------------------------- /Problems/problem_6_lucky_number_guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/problem_6_lucky_number_guess.py -------------------------------------------------------------------------------- /Problems/problem_7_new_years.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/problem_7_new_years.py -------------------------------------------------------------------------------- /Problems/problem_8_for_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/problem_8_for_bug.py -------------------------------------------------------------------------------- /Problems/problem_9_card_hands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/Problems/problem_9_card_hands.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/README.md -------------------------------------------------------------------------------- /docs/PATH_LOCATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/PATH_LOCATIONS.md -------------------------------------------------------------------------------- /docs/PyCharm_interpreter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/PyCharm_interpreter.md -------------------------------------------------------------------------------- /docs/WININSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/WININSTALL.md -------------------------------------------------------------------------------- /docs/WINSETPATH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/WINSETPATH.md -------------------------------------------------------------------------------- /docs/img/installer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/img/installer_1.png -------------------------------------------------------------------------------- /docs/img/installer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/img/installer_2.png -------------------------------------------------------------------------------- /docs/img/installer_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/img/installer_3.png -------------------------------------------------------------------------------- /docs/img/pycharm_python_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/img/pycharm_python_1.png -------------------------------------------------------------------------------- /docs/img/pycharm_python_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/img/pycharm_python_2.png -------------------------------------------------------------------------------- /docs/img/pycharm_python_3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/img/pycharm_python_3a.png -------------------------------------------------------------------------------- /docs/img/pycharm_python_3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/img/pycharm_python_3b.png -------------------------------------------------------------------------------- /docs/img/pycharm_python_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/img/pycharm_python_4.png -------------------------------------------------------------------------------- /docs/img/pycharm_python_5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/img/pycharm_python_5a.png -------------------------------------------------------------------------------- /docs/img/pycharm_python_5b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ariannedee/intro-to-python/HEAD/docs/img/pycharm_python_5b.png --------------------------------------------------------------------------------