gitextract_3zhv_6_4/ ├── CONTRIBUTING.md ├── Display ASCII Value of a Character.py ├── Double the number pattern ├── Drawing_With_Turtle.py ├── LICENSE ├── Medium level python program ├── Pattern Program ├── Pattern Python Program ├── README.md ├── Turtle_Drawing.py ├── _config.yml ├── algorithms/ │ ├── README.md │ ├── analysis/ │ │ ├── README.md │ │ ├── bigo_notation.py │ │ ├── count.py │ │ ├── enum.py │ │ ├── length.py │ │ ├── max.py │ │ ├── mean.py │ │ ├── median.py │ │ ├── min.py │ │ ├── mode.py │ │ ├── sort.py │ │ ├── sum.py │ │ └── useful_function_mapping.py │ ├── numbers/ │ │ ├── README.md │ │ ├── binary_to_decimal_converter.py │ │ ├── collatz_sequence.py │ │ ├── compare_array_elements.py │ │ └── factorial.py │ ├── searching/ │ │ └── binary_search.py │ ├── sorting/ │ │ ├── README.md │ │ ├── bubble_sort.py │ │ ├── insertion_sort.py │ │ └── selection_sort.py │ └── string/ │ ├── README.md │ ├── caesars_cipher_encryption.py │ ├── check_anagram.py │ ├── is_palindrome.py │ ├── is_palindrome_two_liner.py │ └── vowel_count.py ├── ansi-colors.py ├── armstrong_number.py ├── bell_number.py ├── bigo_notation.py ├── bubble sort.py ├── cartesian_plane_quadrant.py ├── client_file.py ├── conways.py ├── count_algorithm_execution_time.py ├── days_you_lived.py ├── deMorgans_law.py ├── decimal_to_binary_converter.py ├── decrypting_caesars_cipher.py ├── dictionary.py ├── difference_testing.py ├── discount.py ├── discountPercent.py ├── distance_on_number_line.py ├── euclids_algorithm.py ├── factorial.py ├── figure determiner.py ├── findLcm.py ├── find_cube_root.py ├── find_roots.py ├── find_square_root.py ├── find_square_root_of_imperfect_square.py ├── geometric_progression_builder.py ├── healthScore.py ├── hello_world.py ├── html_source.py ├── identity_matrix_recognizer.py ├── image_downloader.py ├── in_the_something.py ├── item_index.py ├── kay_sort.py ├── lessThanMoreThan.py ├── linear_search.py ├── listOperations.py ├── listOperationsMethods.py ├── listReverse.py ├── list_comprehensions.py ├── logarithm_integer.py ├── madLibs.py ├── magicball_8.py ├── map_example.py ├── math/ │ ├── Binary_to_decimal │ ├── FreefallCalculator │ ├── README.md │ ├── aircraft_thrust.py │ ├── area_volume_calculator.py │ ├── arithmetic_progression_builder.py │ ├── calculator.py │ ├── decimal_to_binary_converter.py │ ├── eulers_python.py │ ├── geoMean.py │ └── number_lesser_greater.py ├── mathoperators.py ├── max_by_alphabetical_order.py ├── max_int_in_list.py ├── min_by_alphabetical_order.py ├── min_int_in_list.py ├── mod_example.py ├── modified_selection_sort.py ├── morse_code_decoder.py ├── multiplicationTables.py ├── my_name.py ├── nearest_square_and_its_root.py ├── network/ │ └── are_you_connected_to_world.py ├── newOnContacts.py ├── non_multiples.py ├── ordered_binary_search.py ├── otherAngle.py ├── password_creator.py ├── percentageCalc.py ├── percentage_increase_decrease.py ├── physics.py ├── pigLatin.py ├── piggyBank.py ├── ping_host.py ├── primeNumbers.py ├── profitLoss.py ├── pyKeywords.py ├── pythagoras.py ├── python_files_compiler.py ├── randomModule.py ├── readFiles.py ├── reverse_sort.py ├── rock,paper,scissor.py ├── selection_sort.py ├── sendingEmailsInPython.py ├── server_file.py ├── shell_games/ │ ├── README.md │ ├── battleship.py │ ├── battleship_info.txt │ ├── dice_rolling_simulator.py │ ├── dice_rolling_simulator_info.txt │ └── number_guessing_game.py ├── simple_scripts/ │ ├── ListExample.py │ ├── README.md │ ├── args_example.py │ ├── args_example_1.py │ ├── class_animal_attributes_examples.py │ ├── class_example_movies.py │ ├── class_movies.py │ ├── conditionals_examples.py │ ├── for_loop_fibonnaci │ ├── for_loop_mountain.py │ ├── personality_teller.py │ ├── unicode.py │ └── website_opener.py ├── sleepWellAlarm.py ├── snake game/ │ ├── .idea/ │ │ ├── .gitignore │ │ ├── inspectionProfiles/ │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── snake game.iml │ ├── index.html │ └── main.py ├── snake_game.py ├── sortString.py ├── sortingFunctions.py ├── squareTurtle.py ├── square_root_algorithm.py ├── squarecube.py ├── star_turtle.py ├── stringIndexing.py ├── stringOperations.py ├── stringReverse.py ├── sumAverage.py ├── sum_array.py ├── sum_of_arithmetic_sequence.py ├── swap_case.py ├── systemInfo.py ├── table_maker.py ├── take-a-break.py ├── testofdivisibility.py ├── time_conversion.py ├── tuplesExample.py ├── turtleRandomWeb.py ├── useful_scripts/ │ ├── Diffe_Hellman.py │ ├── binary_to_decimal_conversion.py │ ├── bmi_body_mass_index_calculator.py │ ├── caesars_cipher_encryption.py │ ├── calculator.py │ ├── calendar.py │ ├── password_generator.py │ ├── pinger.py │ └── timer.py ├── videodownloader.py └── writingFiles.py