├── .gitignore ├── README.md ├── basics ├── examples │ ├── comments.py │ ├── conversions.py │ ├── format.py │ ├── indexes_and_slices.py │ ├── more_strings.py │ ├── string_literals.py │ ├── string_methods.py │ ├── string_operations.py │ ├── string_types.py │ └── whitespace.py └── solutions │ ├── basics_ex01.py │ ├── basics_ex02.py │ ├── basics_ex03.py │ ├── basics_ex04.py │ ├── basics_ex05.py │ ├── basics_ex06.py │ ├── basics_ex07.py │ └── basics_ex08.py ├── classes ├── examples │ ├── car.py │ ├── car_test.py │ ├── classes.py │ ├── fraction.py │ ├── fraction_tests.py │ ├── gradstudent.py │ ├── gradstudent_test.py │ ├── shape.py │ ├── shape_circle.py │ ├── shape_rectangle.py │ ├── shape_square.py │ ├── shape_testing.py │ ├── student0.py │ ├── student1.py │ ├── student2.py │ ├── student3.py │ ├── student3_test.py │ ├── student4.py │ └── student_test.py ├── solutions │ ├── classes_ex01.py │ ├── classes_ex02.py │ ├── classes_ex03.py │ └── classes_ex04.py └── starter │ └── family_test.py ├── collections ├── examples │ ├── adding_to_dictionary.py │ ├── basic_sorting.py │ ├── creating_lists.py │ ├── creating_sets.py │ ├── custom_sort_function.py │ ├── custom_sorting.py │ ├── dictionary_sorts.py │ ├── getting_from_dictionary.py │ ├── list_loops.py │ ├── processing_dictionaries.py │ ├── removing_from_dictionary.py │ ├── set_operations.py │ ├── sorting_a_collection.py │ ├── tuple_loops.py │ ├── unpacking_lists.py │ ├── working_with_lists.py │ └── working_with_sets.py └── solutions │ ├── collections_ex01.py │ ├── collections_ex02.py │ ├── collections_ex03.py │ ├── collections_ex04.py │ ├── collections_ex05.py │ └── collections_ex06.py ├── data_structures ├── examples │ ├── customer_and_address.py │ ├── customer_functions.py │ ├── customers.py │ ├── customers.txt │ ├── dictionary_comprehension.py │ ├── fileinfo.py │ ├── from_functions.py │ ├── generate_dates.py │ ├── in_parallel.py │ ├── items_and_attributes.py │ ├── list_comprehensions.py │ ├── palindromes.py │ ├── tertiary_sort.py │ ├── tertiary_sort2.py │ └── triples.py └── solutions │ ├── data_structures_ex01.py │ ├── data_structures_ex02.py │ ├── data_structures_ex03.py │ ├── data_structures_ex04.py │ └── dataset ├── debugger ├── examples │ └── simple_program.py └── solutions │ ├── debugging_ex01.py │ ├── debugging_ex02.py │ ├── debugging_ex03.py │ ├── debugging_ex04.py │ └── generate_dates.py ├── exceptions ├── examples │ ├── assert_demo.py │ ├── fraction.py │ ├── fraction_test.py │ ├── handled_separately.py │ ├── multi.py │ ├── password_errors.py │ ├── password_tests.py │ ├── password_utilities.py │ ├── totals.py │ └── totals_handled.py └── solutions │ ├── exceptions_ex01.py │ ├── exceptions_ex02.py │ └── exceptions_ex03.py ├── functions ├── examples │ ├── average_grades.py │ ├── filter_demo.py │ ├── filter_with_lambda.py │ ├── first_function.py │ ├── firstclass.py │ ├── function_menu.py │ ├── functions │ │ ├── average_grades.py │ │ ├── filter_demo.py │ │ ├── filter_with_lambda.py │ │ ├── first_function.py │ │ ├── firstclass.py │ │ ├── function_menu.py │ │ ├── global.py │ │ ├── iterative_sum.py │ │ ├── local.py │ │ ├── map_demo.py │ │ ├── named_args.py │ │ ├── nested.py │ │ ├── nested_lambda.py │ │ ├── optional_args.py │ │ ├── pass_dict.py │ │ ├── pass_list.py │ │ ├── recursive_sum.py │ │ ├── recursive_sum_verbose.py │ │ ├── second_function.py │ │ ├── third_function.py │ │ ├── traditional_args.py │ │ ├── varargs.py │ │ ├── variable_position.py │ │ └── yahtzee_scores.py │ ├── global.py │ ├── iterative_sum.py │ ├── local.py │ ├── map_demo.py │ ├── named_args.py │ ├── nested.py │ ├── nested_lambda.py │ ├── optional_args.py │ ├── pass_dict.py │ ├── pass_list.py │ ├── recursive_sum.py │ ├── recursive_sum_verbose.py │ ├── second_function.py │ ├── third_function.py │ ├── traditional_args.py │ ├── varargs.py │ ├── variable_position.py │ └── yahtzee_scores.py └── solutions │ ├── functions_ex01.py │ ├── functions_ex02.py │ ├── functions_ex03.py │ ├── functions_ex04.py │ ├── functions_ex05.py │ ├── functions_ex06.py │ ├── functions_ex07.py │ ├── functions_ex08.py │ ├── functions_ex09.py │ ├── functions_ex10.py │ ├── functions_ex11.py │ ├── functions_ex12.py │ └── functions_ex13.py ├── io ├── examples │ ├── alphabet │ ├── binary_io.py │ ├── filestats.py │ ├── print1.py │ ├── print2.py │ ├── read1.py │ ├── read2.py │ ├── read3.py │ ├── read4.py │ ├── seek1.py │ ├── seekdata.txt │ ├── sys_io.py │ ├── write1.py │ ├── write2.py │ ├── write3.py │ └── writelines.py ├── solutions │ ├── io_ex01.py │ ├── io_ex02.py │ ├── io_ex03.py │ ├── io_ex04.py │ ├── io_ex05.py │ ├── io_ex06.py │ ├── io_ex07.py │ ├── io_ex08.py │ ├── names_a.txt │ ├── names_b.txt │ ├── names_c.txt │ └── names_d.txt └── starter │ ├── names_a.txt │ ├── names_b.txt │ ├── names_c.txt │ └── names_d.txt ├── json ├── examples │ ├── api_data.json │ ├── colors.json │ ├── dumps_loads.py │ ├── load_json_colors.py │ ├── loads.py │ └── tweedle_dump.py └── solutions │ ├── books.json │ ├── cyclone │ ├── json_ex1.py │ ├── json_ex2.py │ ├── json_ex3.py │ └── json_ex4.py ├── language ├── examples │ ├── calculate_sum.py │ ├── continue_and_break.py │ ├── elif_example.py │ ├── for_loops.py │ ├── if_else.py │ ├── if_else_rewritten.py │ ├── logicals.py │ ├── splitting_strings.py │ └── while_with_else.py └── solutions │ ├── language_ex01.py │ ├── language_ex02.py │ ├── language_ex03.py │ ├── language_ex04.py │ ├── language_ex05.py │ ├── language_ex06.py │ ├── language_ex07.py │ └── language_ex08.py ├── modules ├── examples │ ├── alternate.py │ ├── app.py │ ├── calendars.py │ ├── dates_and_times.py │ ├── numbers_and_math.py │ ├── numbers_and_math_test.py │ ├── reusable.py │ ├── sys_testing.py │ └── time_testing.py └── solutions │ ├── modules_ex01_functions.py │ ├── modules_ex01_test.py │ ├── modules_ex02_functions.py │ ├── modules_ex02_test.py │ ├── modules_ex03.py │ └── modules_ex04.py ├── overview ├── examples │ ├── datatypes.py │ └── hello.py └── solutions │ └── first.py ├── regular_expressions ├── examples │ ├── findall_sub.py │ ├── group_testing.py │ └── regex_testing.py └── solutions │ ├── regular_expressions_ex01.py │ ├── regular_expressions_ex02.py │ └── regular_expressions_ex03.py └── sample_api ├── Dockerfile ├── numbers.csv ├── requirements.txt ├── sampleAPI.py └── todolist.csv /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode/ 3 | .DS_Store 4 | .venv 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/README.md -------------------------------------------------------------------------------- /basics/examples/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/examples/comments.py -------------------------------------------------------------------------------- /basics/examples/conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/examples/conversions.py -------------------------------------------------------------------------------- /basics/examples/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/examples/format.py -------------------------------------------------------------------------------- /basics/examples/indexes_and_slices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/examples/indexes_and_slices.py -------------------------------------------------------------------------------- /basics/examples/more_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/examples/more_strings.py -------------------------------------------------------------------------------- /basics/examples/string_literals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/examples/string_literals.py -------------------------------------------------------------------------------- /basics/examples/string_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/examples/string_methods.py -------------------------------------------------------------------------------- /basics/examples/string_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/examples/string_operations.py -------------------------------------------------------------------------------- /basics/examples/string_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/examples/string_types.py -------------------------------------------------------------------------------- /basics/examples/whitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/examples/whitespace.py -------------------------------------------------------------------------------- /basics/solutions/basics_ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/solutions/basics_ex01.py -------------------------------------------------------------------------------- /basics/solutions/basics_ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/solutions/basics_ex02.py -------------------------------------------------------------------------------- /basics/solutions/basics_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/solutions/basics_ex03.py -------------------------------------------------------------------------------- /basics/solutions/basics_ex04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/solutions/basics_ex04.py -------------------------------------------------------------------------------- /basics/solutions/basics_ex05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/solutions/basics_ex05.py -------------------------------------------------------------------------------- /basics/solutions/basics_ex06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/solutions/basics_ex06.py -------------------------------------------------------------------------------- /basics/solutions/basics_ex07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/solutions/basics_ex07.py -------------------------------------------------------------------------------- /basics/solutions/basics_ex08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/basics/solutions/basics_ex08.py -------------------------------------------------------------------------------- /classes/examples/car.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/car.py -------------------------------------------------------------------------------- /classes/examples/car_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/car_test.py -------------------------------------------------------------------------------- /classes/examples/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/classes.py -------------------------------------------------------------------------------- /classes/examples/fraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/fraction.py -------------------------------------------------------------------------------- /classes/examples/fraction_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/fraction_tests.py -------------------------------------------------------------------------------- /classes/examples/gradstudent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/gradstudent.py -------------------------------------------------------------------------------- /classes/examples/gradstudent_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/gradstudent_test.py -------------------------------------------------------------------------------- /classes/examples/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/shape.py -------------------------------------------------------------------------------- /classes/examples/shape_circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/shape_circle.py -------------------------------------------------------------------------------- /classes/examples/shape_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/shape_rectangle.py -------------------------------------------------------------------------------- /classes/examples/shape_square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/shape_square.py -------------------------------------------------------------------------------- /classes/examples/shape_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/shape_testing.py -------------------------------------------------------------------------------- /classes/examples/student0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/student0.py -------------------------------------------------------------------------------- /classes/examples/student1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/student1.py -------------------------------------------------------------------------------- /classes/examples/student2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/student2.py -------------------------------------------------------------------------------- /classes/examples/student3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/student3.py -------------------------------------------------------------------------------- /classes/examples/student3_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/student3_test.py -------------------------------------------------------------------------------- /classes/examples/student4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/student4.py -------------------------------------------------------------------------------- /classes/examples/student_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/examples/student_test.py -------------------------------------------------------------------------------- /classes/solutions/classes_ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/solutions/classes_ex01.py -------------------------------------------------------------------------------- /classes/solutions/classes_ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/solutions/classes_ex02.py -------------------------------------------------------------------------------- /classes/solutions/classes_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/solutions/classes_ex03.py -------------------------------------------------------------------------------- /classes/solutions/classes_ex04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/solutions/classes_ex04.py -------------------------------------------------------------------------------- /classes/starter/family_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/classes/starter/family_test.py -------------------------------------------------------------------------------- /collections/examples/adding_to_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/adding_to_dictionary.py -------------------------------------------------------------------------------- /collections/examples/basic_sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/basic_sorting.py -------------------------------------------------------------------------------- /collections/examples/creating_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/creating_lists.py -------------------------------------------------------------------------------- /collections/examples/creating_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/creating_sets.py -------------------------------------------------------------------------------- /collections/examples/custom_sort_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/custom_sort_function.py -------------------------------------------------------------------------------- /collections/examples/custom_sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/custom_sorting.py -------------------------------------------------------------------------------- /collections/examples/dictionary_sorts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/dictionary_sorts.py -------------------------------------------------------------------------------- /collections/examples/getting_from_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/getting_from_dictionary.py -------------------------------------------------------------------------------- /collections/examples/list_loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/list_loops.py -------------------------------------------------------------------------------- /collections/examples/processing_dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/processing_dictionaries.py -------------------------------------------------------------------------------- /collections/examples/removing_from_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/removing_from_dictionary.py -------------------------------------------------------------------------------- /collections/examples/set_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/set_operations.py -------------------------------------------------------------------------------- /collections/examples/sorting_a_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/sorting_a_collection.py -------------------------------------------------------------------------------- /collections/examples/tuple_loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/tuple_loops.py -------------------------------------------------------------------------------- /collections/examples/unpacking_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/unpacking_lists.py -------------------------------------------------------------------------------- /collections/examples/working_with_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/working_with_lists.py -------------------------------------------------------------------------------- /collections/examples/working_with_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/examples/working_with_sets.py -------------------------------------------------------------------------------- /collections/solutions/collections_ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/solutions/collections_ex01.py -------------------------------------------------------------------------------- /collections/solutions/collections_ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/solutions/collections_ex02.py -------------------------------------------------------------------------------- /collections/solutions/collections_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/solutions/collections_ex03.py -------------------------------------------------------------------------------- /collections/solutions/collections_ex04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/solutions/collections_ex04.py -------------------------------------------------------------------------------- /collections/solutions/collections_ex05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/solutions/collections_ex05.py -------------------------------------------------------------------------------- /collections/solutions/collections_ex06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/collections/solutions/collections_ex06.py -------------------------------------------------------------------------------- /data_structures/examples/customer_and_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/customer_and_address.py -------------------------------------------------------------------------------- /data_structures/examples/customer_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/customer_functions.py -------------------------------------------------------------------------------- /data_structures/examples/customers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/customers.py -------------------------------------------------------------------------------- /data_structures/examples/customers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/customers.txt -------------------------------------------------------------------------------- /data_structures/examples/dictionary_comprehension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/dictionary_comprehension.py -------------------------------------------------------------------------------- /data_structures/examples/fileinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/fileinfo.py -------------------------------------------------------------------------------- /data_structures/examples/from_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/from_functions.py -------------------------------------------------------------------------------- /data_structures/examples/generate_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/generate_dates.py -------------------------------------------------------------------------------- /data_structures/examples/in_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/in_parallel.py -------------------------------------------------------------------------------- /data_structures/examples/items_and_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/items_and_attributes.py -------------------------------------------------------------------------------- /data_structures/examples/list_comprehensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/list_comprehensions.py -------------------------------------------------------------------------------- /data_structures/examples/palindromes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/palindromes.py -------------------------------------------------------------------------------- /data_structures/examples/tertiary_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/tertiary_sort.py -------------------------------------------------------------------------------- /data_structures/examples/tertiary_sort2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/tertiary_sort2.py -------------------------------------------------------------------------------- /data_structures/examples/triples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/examples/triples.py -------------------------------------------------------------------------------- /data_structures/solutions/data_structures_ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/solutions/data_structures_ex01.py -------------------------------------------------------------------------------- /data_structures/solutions/data_structures_ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/solutions/data_structures_ex02.py -------------------------------------------------------------------------------- /data_structures/solutions/data_structures_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/solutions/data_structures_ex03.py -------------------------------------------------------------------------------- /data_structures/solutions/data_structures_ex04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/solutions/data_structures_ex04.py -------------------------------------------------------------------------------- /data_structures/solutions/dataset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/data_structures/solutions/dataset -------------------------------------------------------------------------------- /debugger/examples/simple_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/debugger/examples/simple_program.py -------------------------------------------------------------------------------- /debugger/solutions/debugging_ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/debugger/solutions/debugging_ex01.py -------------------------------------------------------------------------------- /debugger/solutions/debugging_ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/debugger/solutions/debugging_ex02.py -------------------------------------------------------------------------------- /debugger/solutions/debugging_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/debugger/solutions/debugging_ex03.py -------------------------------------------------------------------------------- /debugger/solutions/debugging_ex04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/debugger/solutions/debugging_ex04.py -------------------------------------------------------------------------------- /debugger/solutions/generate_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/debugger/solutions/generate_dates.py -------------------------------------------------------------------------------- /exceptions/examples/assert_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/exceptions/examples/assert_demo.py -------------------------------------------------------------------------------- /exceptions/examples/fraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/exceptions/examples/fraction.py -------------------------------------------------------------------------------- /exceptions/examples/fraction_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/exceptions/examples/fraction_test.py -------------------------------------------------------------------------------- /exceptions/examples/handled_separately.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/exceptions/examples/handled_separately.py -------------------------------------------------------------------------------- /exceptions/examples/multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/exceptions/examples/multi.py -------------------------------------------------------------------------------- /exceptions/examples/password_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/exceptions/examples/password_errors.py -------------------------------------------------------------------------------- /exceptions/examples/password_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/exceptions/examples/password_tests.py -------------------------------------------------------------------------------- /exceptions/examples/password_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/exceptions/examples/password_utilities.py -------------------------------------------------------------------------------- /exceptions/examples/totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/exceptions/examples/totals.py -------------------------------------------------------------------------------- /exceptions/examples/totals_handled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/exceptions/examples/totals_handled.py -------------------------------------------------------------------------------- /exceptions/solutions/exceptions_ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/exceptions/solutions/exceptions_ex01.py -------------------------------------------------------------------------------- /exceptions/solutions/exceptions_ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/exceptions/solutions/exceptions_ex02.py -------------------------------------------------------------------------------- /exceptions/solutions/exceptions_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/exceptions/solutions/exceptions_ex03.py -------------------------------------------------------------------------------- /functions/examples/average_grades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/average_grades.py -------------------------------------------------------------------------------- /functions/examples/filter_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/filter_demo.py -------------------------------------------------------------------------------- /functions/examples/filter_with_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/filter_with_lambda.py -------------------------------------------------------------------------------- /functions/examples/first_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/first_function.py -------------------------------------------------------------------------------- /functions/examples/firstclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/firstclass.py -------------------------------------------------------------------------------- /functions/examples/function_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/function_menu.py -------------------------------------------------------------------------------- /functions/examples/functions/average_grades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/average_grades.py -------------------------------------------------------------------------------- /functions/examples/functions/filter_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/filter_demo.py -------------------------------------------------------------------------------- /functions/examples/functions/filter_with_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/filter_with_lambda.py -------------------------------------------------------------------------------- /functions/examples/functions/first_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/first_function.py -------------------------------------------------------------------------------- /functions/examples/functions/firstclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/firstclass.py -------------------------------------------------------------------------------- /functions/examples/functions/function_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/function_menu.py -------------------------------------------------------------------------------- /functions/examples/functions/global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/global.py -------------------------------------------------------------------------------- /functions/examples/functions/iterative_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/iterative_sum.py -------------------------------------------------------------------------------- /functions/examples/functions/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/local.py -------------------------------------------------------------------------------- /functions/examples/functions/map_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/map_demo.py -------------------------------------------------------------------------------- /functions/examples/functions/named_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/named_args.py -------------------------------------------------------------------------------- /functions/examples/functions/nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/nested.py -------------------------------------------------------------------------------- /functions/examples/functions/nested_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/nested_lambda.py -------------------------------------------------------------------------------- /functions/examples/functions/optional_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/optional_args.py -------------------------------------------------------------------------------- /functions/examples/functions/pass_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/pass_dict.py -------------------------------------------------------------------------------- /functions/examples/functions/pass_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/pass_list.py -------------------------------------------------------------------------------- /functions/examples/functions/recursive_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/recursive_sum.py -------------------------------------------------------------------------------- /functions/examples/functions/recursive_sum_verbose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/recursive_sum_verbose.py -------------------------------------------------------------------------------- /functions/examples/functions/second_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/second_function.py -------------------------------------------------------------------------------- /functions/examples/functions/third_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/third_function.py -------------------------------------------------------------------------------- /functions/examples/functions/traditional_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/traditional_args.py -------------------------------------------------------------------------------- /functions/examples/functions/varargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/varargs.py -------------------------------------------------------------------------------- /functions/examples/functions/variable_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/variable_position.py -------------------------------------------------------------------------------- /functions/examples/functions/yahtzee_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/functions/yahtzee_scores.py -------------------------------------------------------------------------------- /functions/examples/global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/global.py -------------------------------------------------------------------------------- /functions/examples/iterative_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/iterative_sum.py -------------------------------------------------------------------------------- /functions/examples/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/local.py -------------------------------------------------------------------------------- /functions/examples/map_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/map_demo.py -------------------------------------------------------------------------------- /functions/examples/named_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/named_args.py -------------------------------------------------------------------------------- /functions/examples/nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/nested.py -------------------------------------------------------------------------------- /functions/examples/nested_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/nested_lambda.py -------------------------------------------------------------------------------- /functions/examples/optional_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/optional_args.py -------------------------------------------------------------------------------- /functions/examples/pass_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/pass_dict.py -------------------------------------------------------------------------------- /functions/examples/pass_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/pass_list.py -------------------------------------------------------------------------------- /functions/examples/recursive_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/recursive_sum.py -------------------------------------------------------------------------------- /functions/examples/recursive_sum_verbose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/recursive_sum_verbose.py -------------------------------------------------------------------------------- /functions/examples/second_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/second_function.py -------------------------------------------------------------------------------- /functions/examples/third_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/third_function.py -------------------------------------------------------------------------------- /functions/examples/traditional_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/traditional_args.py -------------------------------------------------------------------------------- /functions/examples/varargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/varargs.py -------------------------------------------------------------------------------- /functions/examples/variable_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/variable_position.py -------------------------------------------------------------------------------- /functions/examples/yahtzee_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/examples/yahtzee_scores.py -------------------------------------------------------------------------------- /functions/solutions/functions_ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/solutions/functions_ex01.py -------------------------------------------------------------------------------- /functions/solutions/functions_ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/solutions/functions_ex02.py -------------------------------------------------------------------------------- /functions/solutions/functions_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/solutions/functions_ex03.py -------------------------------------------------------------------------------- /functions/solutions/functions_ex04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/solutions/functions_ex04.py -------------------------------------------------------------------------------- /functions/solutions/functions_ex05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/solutions/functions_ex05.py -------------------------------------------------------------------------------- /functions/solutions/functions_ex06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/solutions/functions_ex06.py -------------------------------------------------------------------------------- /functions/solutions/functions_ex07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/solutions/functions_ex07.py -------------------------------------------------------------------------------- /functions/solutions/functions_ex08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/solutions/functions_ex08.py -------------------------------------------------------------------------------- /functions/solutions/functions_ex09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/solutions/functions_ex09.py -------------------------------------------------------------------------------- /functions/solutions/functions_ex10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/solutions/functions_ex10.py -------------------------------------------------------------------------------- /functions/solutions/functions_ex11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/solutions/functions_ex11.py -------------------------------------------------------------------------------- /functions/solutions/functions_ex12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/solutions/functions_ex12.py -------------------------------------------------------------------------------- /functions/solutions/functions_ex13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/functions/solutions/functions_ex13.py -------------------------------------------------------------------------------- /io/examples/alphabet: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ -------------------------------------------------------------------------------- /io/examples/binary_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/binary_io.py -------------------------------------------------------------------------------- /io/examples/filestats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/filestats.py -------------------------------------------------------------------------------- /io/examples/print1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/print1.py -------------------------------------------------------------------------------- /io/examples/print2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/print2.py -------------------------------------------------------------------------------- /io/examples/read1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/read1.py -------------------------------------------------------------------------------- /io/examples/read2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/read2.py -------------------------------------------------------------------------------- /io/examples/read3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/read3.py -------------------------------------------------------------------------------- /io/examples/read4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/read4.py -------------------------------------------------------------------------------- /io/examples/seek1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/seek1.py -------------------------------------------------------------------------------- /io/examples/seekdata.txt: -------------------------------------------------------------------------------- 1 | ABCDEFGHIJKLMNOPQRSTUVWXYZ -------------------------------------------------------------------------------- /io/examples/sys_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/sys_io.py -------------------------------------------------------------------------------- /io/examples/write1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/write1.py -------------------------------------------------------------------------------- /io/examples/write2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/write2.py -------------------------------------------------------------------------------- /io/examples/write3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/write3.py -------------------------------------------------------------------------------- /io/examples/writelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/examples/writelines.py -------------------------------------------------------------------------------- /io/solutions/io_ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/solutions/io_ex01.py -------------------------------------------------------------------------------- /io/solutions/io_ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/solutions/io_ex02.py -------------------------------------------------------------------------------- /io/solutions/io_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/solutions/io_ex03.py -------------------------------------------------------------------------------- /io/solutions/io_ex04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/solutions/io_ex04.py -------------------------------------------------------------------------------- /io/solutions/io_ex05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/solutions/io_ex05.py -------------------------------------------------------------------------------- /io/solutions/io_ex06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/solutions/io_ex06.py -------------------------------------------------------------------------------- /io/solutions/io_ex07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/solutions/io_ex07.py -------------------------------------------------------------------------------- /io/solutions/io_ex08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/io/solutions/io_ex08.py -------------------------------------------------------------------------------- /io/solutions/names_a.txt: -------------------------------------------------------------------------------- 1 | Jane 2 | John 3 | Peter 4 | Bill 5 | Mike 6 | Alice 7 | Frank 8 | Bart -------------------------------------------------------------------------------- /io/solutions/names_b.txt: -------------------------------------------------------------------------------- 1 | Susan 2 | Mary 3 | Dave 4 | Mike 5 | Alice 6 | Chris 7 | Beverly 8 | Bill -------------------------------------------------------------------------------- /io/solutions/names_c.txt: -------------------------------------------------------------------------------- 1 | Jane 2 | John 3 | Peter 4 | Bill 5 | Mike 6 | Alice 7 | Frank 8 | Bart -------------------------------------------------------------------------------- /io/solutions/names_d.txt: -------------------------------------------------------------------------------- 1 | Jane 2 | Chris 3 | Peter 4 | Bill 5 | Mike 6 | Alice 7 | Frank 8 | Susan -------------------------------------------------------------------------------- /io/starter/names_a.txt: -------------------------------------------------------------------------------- 1 | Jane 2 | John 3 | Peter 4 | Bill 5 | Mike 6 | Alice 7 | Frank 8 | Bart -------------------------------------------------------------------------------- /io/starter/names_b.txt: -------------------------------------------------------------------------------- 1 | Susan 2 | Mary 3 | Dave 4 | Mike 5 | Alice 6 | Chris 7 | Beverly 8 | Bill -------------------------------------------------------------------------------- /io/starter/names_c.txt: -------------------------------------------------------------------------------- 1 | Jane 2 | John 3 | Peter 4 | Bill 5 | Mike 6 | Alice 7 | Frank 8 | Bart -------------------------------------------------------------------------------- /io/starter/names_d.txt: -------------------------------------------------------------------------------- 1 | Jane 2 | Chris 3 | Peter 4 | Bill 5 | Mike 6 | Alice 7 | Frank 8 | Susan -------------------------------------------------------------------------------- /json/examples/api_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/json/examples/api_data.json -------------------------------------------------------------------------------- /json/examples/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/json/examples/colors.json -------------------------------------------------------------------------------- /json/examples/dumps_loads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/json/examples/dumps_loads.py -------------------------------------------------------------------------------- /json/examples/load_json_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/json/examples/load_json_colors.py -------------------------------------------------------------------------------- /json/examples/loads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/json/examples/loads.py -------------------------------------------------------------------------------- /json/examples/tweedle_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/json/examples/tweedle_dump.py -------------------------------------------------------------------------------- /json/solutions/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/json/solutions/books.json -------------------------------------------------------------------------------- /json/solutions/cyclone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/json/solutions/cyclone -------------------------------------------------------------------------------- /json/solutions/json_ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/json/solutions/json_ex1.py -------------------------------------------------------------------------------- /json/solutions/json_ex2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/json/solutions/json_ex2.py -------------------------------------------------------------------------------- /json/solutions/json_ex3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/json/solutions/json_ex3.py -------------------------------------------------------------------------------- /json/solutions/json_ex4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/json/solutions/json_ex4.py -------------------------------------------------------------------------------- /language/examples/calculate_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/examples/calculate_sum.py -------------------------------------------------------------------------------- /language/examples/continue_and_break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/examples/continue_and_break.py -------------------------------------------------------------------------------- /language/examples/elif_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/examples/elif_example.py -------------------------------------------------------------------------------- /language/examples/for_loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/examples/for_loops.py -------------------------------------------------------------------------------- /language/examples/if_else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/examples/if_else.py -------------------------------------------------------------------------------- /language/examples/if_else_rewritten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/examples/if_else_rewritten.py -------------------------------------------------------------------------------- /language/examples/logicals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/examples/logicals.py -------------------------------------------------------------------------------- /language/examples/splitting_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/examples/splitting_strings.py -------------------------------------------------------------------------------- /language/examples/while_with_else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/examples/while_with_else.py -------------------------------------------------------------------------------- /language/solutions/language_ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/solutions/language_ex01.py -------------------------------------------------------------------------------- /language/solutions/language_ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/solutions/language_ex02.py -------------------------------------------------------------------------------- /language/solutions/language_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/solutions/language_ex03.py -------------------------------------------------------------------------------- /language/solutions/language_ex04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/solutions/language_ex04.py -------------------------------------------------------------------------------- /language/solutions/language_ex05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/solutions/language_ex05.py -------------------------------------------------------------------------------- /language/solutions/language_ex06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/solutions/language_ex06.py -------------------------------------------------------------------------------- /language/solutions/language_ex07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/solutions/language_ex07.py -------------------------------------------------------------------------------- /language/solutions/language_ex08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/language/solutions/language_ex08.py -------------------------------------------------------------------------------- /modules/examples/alternate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/examples/alternate.py -------------------------------------------------------------------------------- /modules/examples/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/examples/app.py -------------------------------------------------------------------------------- /modules/examples/calendars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/examples/calendars.py -------------------------------------------------------------------------------- /modules/examples/dates_and_times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/examples/dates_and_times.py -------------------------------------------------------------------------------- /modules/examples/numbers_and_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/examples/numbers_and_math.py -------------------------------------------------------------------------------- /modules/examples/numbers_and_math_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/examples/numbers_and_math_test.py -------------------------------------------------------------------------------- /modules/examples/reusable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/examples/reusable.py -------------------------------------------------------------------------------- /modules/examples/sys_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/examples/sys_testing.py -------------------------------------------------------------------------------- /modules/examples/time_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/examples/time_testing.py -------------------------------------------------------------------------------- /modules/solutions/modules_ex01_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/solutions/modules_ex01_functions.py -------------------------------------------------------------------------------- /modules/solutions/modules_ex01_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/solutions/modules_ex01_test.py -------------------------------------------------------------------------------- /modules/solutions/modules_ex02_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/solutions/modules_ex02_functions.py -------------------------------------------------------------------------------- /modules/solutions/modules_ex02_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/solutions/modules_ex02_test.py -------------------------------------------------------------------------------- /modules/solutions/modules_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/solutions/modules_ex03.py -------------------------------------------------------------------------------- /modules/solutions/modules_ex04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/modules/solutions/modules_ex04.py -------------------------------------------------------------------------------- /overview/examples/datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/overview/examples/datatypes.py -------------------------------------------------------------------------------- /overview/examples/hello.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | print("Hello World") 3 | -------------------------------------------------------------------------------- /overview/solutions/first.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/overview/solutions/first.py -------------------------------------------------------------------------------- /regular_expressions/examples/findall_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/regular_expressions/examples/findall_sub.py -------------------------------------------------------------------------------- /regular_expressions/examples/group_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/regular_expressions/examples/group_testing.py -------------------------------------------------------------------------------- /regular_expressions/examples/regex_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/regular_expressions/examples/regex_testing.py -------------------------------------------------------------------------------- /regular_expressions/solutions/regular_expressions_ex01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/regular_expressions/solutions/regular_expressions_ex01.py -------------------------------------------------------------------------------- /regular_expressions/solutions/regular_expressions_ex02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/regular_expressions/solutions/regular_expressions_ex02.py -------------------------------------------------------------------------------- /regular_expressions/solutions/regular_expressions_ex03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/regular_expressions/solutions/regular_expressions_ex03.py -------------------------------------------------------------------------------- /sample_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/sample_api/Dockerfile -------------------------------------------------------------------------------- /sample_api/numbers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/sample_api/numbers.csv -------------------------------------------------------------------------------- /sample_api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/sample_api/requirements.txt -------------------------------------------------------------------------------- /sample_api/sampleAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/sample_api/sampleAPI.py -------------------------------------------------------------------------------- /sample_api/todolist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatTraining/AD141-apps/HEAD/sample_api/todolist.csv --------------------------------------------------------------------------------