├── Code_Review_Stack_Exchange ├── My_Answers │ ├── 1_or_2D_Palindromes.ipynb │ ├── bubble_sort.ipynb │ └── text.txt ├── My_Questions │ ├── common_words_in_textfile.ipynb │ └── text.txt └── README.md ├── Exercises-2 ├── 3D_to_2D_lists.ipynb ├── 3D_to_2D_lists.py ├── README.MD ├── armstrong_number.ipynb ├── armstrong_number.py ├── combine_dict_values.ipynb ├── combine_dict_values.py ├── contiguous_items.ipynb ├── contiguous_items.py ├── date_format.ipynb ├── date_format.py ├── dictionary_of_dictionaries.ipynb ├── dictionary_of_dictionaries.py ├── find_files.ipynb ├── find_files.py ├── flatten_lists.ipynb ├── flatten_lists.py ├── get_url.ipynb ├── get_url.py ├── is_integer.ipynb ├── is_integer.py ├── join_dicts.ipynb ├── join_dicts.py ├── list_dict_values.ipynb ├── list_dict_values.py ├── list_lists_of_strings.ipynb ├── list_lists_of_strings.py ├── list_unique_chars.ipynb ├── list_unique_chars.py ├── lists_of_lists.ipynb ├── lists_of_lists.py ├── min_of_pairs.ipynb ├── min_of_pairs.py ├── most_frequent_letter.ipynb ├── most_frequent_letter.py ├── names_emails.ipynb ├── names_emails.py ├── nearest_second.ipynb ├── nearest_second.py ├── remove_spaces.ipynb ├── remove_spaces.py ├── similar_authors.ipynb ├── similar_authors.py ├── skip_identical.ipynb ├── skip_identical.py ├── sort_cartesian_product.ipynb ├── sort_cartesian_product.py ├── write_to_csv.ipynb ├── write_to_csv.py ├── write_to_file.ipynb └── write_to_file.py ├── Exercises ├── README.md ├── average_grade.py ├── bubble_sort.py ├── counting_list_items.py ├── edit_textfile.py ├── eliminate_whitespace.py ├── factorials.py ├── find_vowels.py ├── first_vowel_in_each_word.py ├── get_initials.py ├── int_or_float.py ├── longest_name.py ├── min_of_list.py ├── mutate_list.py ├── renaming_files.py ├── replace_characters.py ├── replace_vowels.py ├── report_card.py ├── sorted_random_floats.py ├── sum_of_digits.py ├── swapping_elements.py ├── unique_words.py ├── validate_postal_code.py └── words_of_certain_length.py ├── First_Class_Functions.ipynb ├── README.md └── Stack_Overflow ├── 3D_to_2D_lists.ipynb ├── README.md ├── armstrong_number.ipynb ├── average_grade.ipynb ├── combine_dict_values.ipynb ├── contiguous_items.ipynb ├── counting_items.ipynb ├── date_format.ipynb ├── dictionary_of_dictionaries.ipynb ├── edit_textfile.ipynb ├── eliminate_whitespace.ipynb ├── factorials.ipynb ├── find_files.ipynb ├── find_vowels.ipynb ├── first_vowel_in_each_word.ipynb ├── flatten_lists.ipynb ├── get_initials.ipynb ├── get_url.ipynb ├── int_or_float.ipynb ├── is_integer.ipynb ├── is_vs._==.ipynb ├── join_dicts.ipynb ├── list_dict_values.ipynb ├── list_lists_of_strings.ipynb ├── list_unique_chars.ipynb ├── lists_of_lists.ipynb ├── longest_name.ipynb ├── min_of_list.ipynb ├── min_of_pairs.ipynb ├── most_frequent_letter.ipynb ├── mutate_input_list.ipynb ├── names_emails.ipynb ├── nearest_second.ipynb ├── remove_spaces.ipynb ├── renaming_files.ipynb ├── replace_characters.ipynb ├── replace_vowels.ipynb ├── report_card.ipynb ├── similar_authors.ipynb ├── skip_identical.ipynb ├── sort_cartesian_product.ipynb ├── sorting_random_floats.ipynb ├── sum_of_digits.ipynb ├── swapping_elements.ipynb ├── unique_words.ipynb ├── validate_postal_code.ipynb ├── words_of_certain_length.ipynb ├── write_to_csv.ipynb └── write_to_file.ipynb /Code_Review_Stack_Exchange/My_Answers/1_or_2D_Palindromes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Code_Review_Stack_Exchange/My_Answers/1_or_2D_Palindromes.ipynb -------------------------------------------------------------------------------- /Code_Review_Stack_Exchange/My_Answers/bubble_sort.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Code_Review_Stack_Exchange/My_Answers/bubble_sort.ipynb -------------------------------------------------------------------------------- /Code_Review_Stack_Exchange/My_Answers/text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Code_Review_Stack_Exchange/My_Questions/common_words_in_textfile.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Code_Review_Stack_Exchange/My_Questions/common_words_in_textfile.ipynb -------------------------------------------------------------------------------- /Code_Review_Stack_Exchange/My_Questions/text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Code_Review_Stack_Exchange/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Code_Review_Stack_Exchange/README.md -------------------------------------------------------------------------------- /Exercises-2/3D_to_2D_lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/3D_to_2D_lists.ipynb -------------------------------------------------------------------------------- /Exercises-2/3D_to_2D_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/3D_to_2D_lists.py -------------------------------------------------------------------------------- /Exercises-2/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/README.MD -------------------------------------------------------------------------------- /Exercises-2/armstrong_number.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/armstrong_number.ipynb -------------------------------------------------------------------------------- /Exercises-2/armstrong_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/armstrong_number.py -------------------------------------------------------------------------------- /Exercises-2/combine_dict_values.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/combine_dict_values.ipynb -------------------------------------------------------------------------------- /Exercises-2/combine_dict_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/combine_dict_values.py -------------------------------------------------------------------------------- /Exercises-2/contiguous_items.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/contiguous_items.ipynb -------------------------------------------------------------------------------- /Exercises-2/contiguous_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/contiguous_items.py -------------------------------------------------------------------------------- /Exercises-2/date_format.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/date_format.ipynb -------------------------------------------------------------------------------- /Exercises-2/date_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/date_format.py -------------------------------------------------------------------------------- /Exercises-2/dictionary_of_dictionaries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/dictionary_of_dictionaries.ipynb -------------------------------------------------------------------------------- /Exercises-2/dictionary_of_dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/dictionary_of_dictionaries.py -------------------------------------------------------------------------------- /Exercises-2/find_files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/find_files.ipynb -------------------------------------------------------------------------------- /Exercises-2/find_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/find_files.py -------------------------------------------------------------------------------- /Exercises-2/flatten_lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/flatten_lists.ipynb -------------------------------------------------------------------------------- /Exercises-2/flatten_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/flatten_lists.py -------------------------------------------------------------------------------- /Exercises-2/get_url.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/get_url.ipynb -------------------------------------------------------------------------------- /Exercises-2/get_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/get_url.py -------------------------------------------------------------------------------- /Exercises-2/is_integer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/is_integer.ipynb -------------------------------------------------------------------------------- /Exercises-2/is_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/is_integer.py -------------------------------------------------------------------------------- /Exercises-2/join_dicts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/join_dicts.ipynb -------------------------------------------------------------------------------- /Exercises-2/join_dicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/join_dicts.py -------------------------------------------------------------------------------- /Exercises-2/list_dict_values.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/list_dict_values.ipynb -------------------------------------------------------------------------------- /Exercises-2/list_dict_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/list_dict_values.py -------------------------------------------------------------------------------- /Exercises-2/list_lists_of_strings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/list_lists_of_strings.ipynb -------------------------------------------------------------------------------- /Exercises-2/list_lists_of_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/list_lists_of_strings.py -------------------------------------------------------------------------------- /Exercises-2/list_unique_chars.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/list_unique_chars.ipynb -------------------------------------------------------------------------------- /Exercises-2/list_unique_chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/list_unique_chars.py -------------------------------------------------------------------------------- /Exercises-2/lists_of_lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/lists_of_lists.ipynb -------------------------------------------------------------------------------- /Exercises-2/lists_of_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/lists_of_lists.py -------------------------------------------------------------------------------- /Exercises-2/min_of_pairs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/min_of_pairs.ipynb -------------------------------------------------------------------------------- /Exercises-2/min_of_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/min_of_pairs.py -------------------------------------------------------------------------------- /Exercises-2/most_frequent_letter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/most_frequent_letter.ipynb -------------------------------------------------------------------------------- /Exercises-2/most_frequent_letter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/most_frequent_letter.py -------------------------------------------------------------------------------- /Exercises-2/names_emails.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/names_emails.ipynb -------------------------------------------------------------------------------- /Exercises-2/names_emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/names_emails.py -------------------------------------------------------------------------------- /Exercises-2/nearest_second.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/nearest_second.ipynb -------------------------------------------------------------------------------- /Exercises-2/nearest_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/nearest_second.py -------------------------------------------------------------------------------- /Exercises-2/remove_spaces.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/remove_spaces.ipynb -------------------------------------------------------------------------------- /Exercises-2/remove_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/remove_spaces.py -------------------------------------------------------------------------------- /Exercises-2/similar_authors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/similar_authors.ipynb -------------------------------------------------------------------------------- /Exercises-2/similar_authors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/similar_authors.py -------------------------------------------------------------------------------- /Exercises-2/skip_identical.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/skip_identical.ipynb -------------------------------------------------------------------------------- /Exercises-2/skip_identical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/skip_identical.py -------------------------------------------------------------------------------- /Exercises-2/sort_cartesian_product.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/sort_cartesian_product.ipynb -------------------------------------------------------------------------------- /Exercises-2/sort_cartesian_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/sort_cartesian_product.py -------------------------------------------------------------------------------- /Exercises-2/write_to_csv.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/write_to_csv.ipynb -------------------------------------------------------------------------------- /Exercises-2/write_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/write_to_csv.py -------------------------------------------------------------------------------- /Exercises-2/write_to_file.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/write_to_file.ipynb -------------------------------------------------------------------------------- /Exercises-2/write_to_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises-2/write_to_file.py -------------------------------------------------------------------------------- /Exercises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/README.md -------------------------------------------------------------------------------- /Exercises/average_grade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/average_grade.py -------------------------------------------------------------------------------- /Exercises/bubble_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/bubble_sort.py -------------------------------------------------------------------------------- /Exercises/counting_list_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/counting_list_items.py -------------------------------------------------------------------------------- /Exercises/edit_textfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/edit_textfile.py -------------------------------------------------------------------------------- /Exercises/eliminate_whitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/eliminate_whitespace.py -------------------------------------------------------------------------------- /Exercises/factorials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/factorials.py -------------------------------------------------------------------------------- /Exercises/find_vowels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/find_vowels.py -------------------------------------------------------------------------------- /Exercises/first_vowel_in_each_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/first_vowel_in_each_word.py -------------------------------------------------------------------------------- /Exercises/get_initials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/get_initials.py -------------------------------------------------------------------------------- /Exercises/int_or_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/int_or_float.py -------------------------------------------------------------------------------- /Exercises/longest_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/longest_name.py -------------------------------------------------------------------------------- /Exercises/min_of_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/min_of_list.py -------------------------------------------------------------------------------- /Exercises/mutate_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/mutate_list.py -------------------------------------------------------------------------------- /Exercises/renaming_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/renaming_files.py -------------------------------------------------------------------------------- /Exercises/replace_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/replace_characters.py -------------------------------------------------------------------------------- /Exercises/replace_vowels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/replace_vowels.py -------------------------------------------------------------------------------- /Exercises/report_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/report_card.py -------------------------------------------------------------------------------- /Exercises/sorted_random_floats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/sorted_random_floats.py -------------------------------------------------------------------------------- /Exercises/sum_of_digits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/sum_of_digits.py -------------------------------------------------------------------------------- /Exercises/swapping_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/swapping_elements.py -------------------------------------------------------------------------------- /Exercises/unique_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/unique_words.py -------------------------------------------------------------------------------- /Exercises/validate_postal_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/validate_postal_code.py -------------------------------------------------------------------------------- /Exercises/words_of_certain_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Exercises/words_of_certain_length.py -------------------------------------------------------------------------------- /First_Class_Functions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/First_Class_Functions.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/README.md -------------------------------------------------------------------------------- /Stack_Overflow/3D_to_2D_lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/3D_to_2D_lists.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/README.md -------------------------------------------------------------------------------- /Stack_Overflow/armstrong_number.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/armstrong_number.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/average_grade.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/average_grade.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/combine_dict_values.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/combine_dict_values.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/contiguous_items.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/contiguous_items.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/counting_items.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/counting_items.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/date_format.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/date_format.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/dictionary_of_dictionaries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/dictionary_of_dictionaries.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/edit_textfile.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/edit_textfile.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/eliminate_whitespace.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/eliminate_whitespace.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/factorials.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/factorials.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/find_files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/find_files.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/find_vowels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/find_vowels.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/first_vowel_in_each_word.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/first_vowel_in_each_word.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/flatten_lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/flatten_lists.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/get_initials.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/get_initials.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/get_url.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/get_url.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/int_or_float.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/int_or_float.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/is_integer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/is_integer.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/is_vs._==.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/is_vs._==.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/join_dicts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/join_dicts.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/list_dict_values.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/list_dict_values.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/list_lists_of_strings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/list_lists_of_strings.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/list_unique_chars.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/list_unique_chars.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/lists_of_lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/lists_of_lists.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/longest_name.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/longest_name.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/min_of_list.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/min_of_list.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/min_of_pairs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/min_of_pairs.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/most_frequent_letter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/most_frequent_letter.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/mutate_input_list.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/mutate_input_list.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/names_emails.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/names_emails.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/nearest_second.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/nearest_second.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/remove_spaces.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/remove_spaces.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/renaming_files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/renaming_files.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/replace_characters.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/replace_characters.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/replace_vowels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/replace_vowels.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/report_card.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/report_card.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/similar_authors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/similar_authors.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/skip_identical.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/skip_identical.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/sort_cartesian_product.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/sort_cartesian_product.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/sorting_random_floats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/sorting_random_floats.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/sum_of_digits.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/sum_of_digits.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/swapping_elements.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/swapping_elements.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/unique_words.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/unique_words.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/validate_postal_code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/validate_postal_code.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/words_of_certain_length.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/words_of_certain_length.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/write_to_csv.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/write_to_csv.ipynb -------------------------------------------------------------------------------- /Stack_Overflow/write_to_file.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srigalibe/pynotes/HEAD/Stack_Overflow/write_to_file.ipynb --------------------------------------------------------------------------------