gitextract_6lyybz2h/ ├── .flake8 ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.es-ES.md ├── README.md ├── README.pt-BR.md ├── README.zh-TW.md ├── _config.yml ├── pylintrc ├── requirements.txt └── src/ ├── additions/ │ ├── test_generators.py │ └── test_pass.py ├── classes/ │ ├── test_class_and_instance_variables.py │ ├── test_class_definition.py │ ├── test_class_objects.py │ ├── test_inheritance.py │ ├── test_instance_objects.py │ ├── test_method_objects.py │ └── test_multiple_inheritance.py ├── control_flow/ │ ├── test_break.py │ ├── test_continue.py │ ├── test_for.py │ ├── test_if.py │ ├── test_try.py │ └── test_while.py ├── data_types/ │ ├── test_dictionaries.py │ ├── test_lists.py │ ├── test_numbers.py │ ├── test_sets.py │ ├── test_strings.py │ ├── test_tuples.py │ └── test_type_casting.py ├── exceptions/ │ ├── test_handle_exceptions.py │ └── test_raise_exceptions.py ├── files/ │ ├── binary_file │ ├── multi_line_file.txt │ ├── test_file_methods.py │ └── test_file_reading.py ├── functions/ │ ├── test_function_annotations.py │ ├── test_function_arbitrary_arguments.py │ ├── test_function_decorators.py │ ├── test_function_default_arguments.py │ ├── test_function_definition.py │ ├── test_function_documentation_string.py │ ├── test_function_keyword_arguments.py │ ├── test_function_scopes.py │ ├── test_function_unpacking_arguments.py │ └── test_lambda_expressions.py ├── getting_started/ │ ├── python_syntax.md │ ├── test_variables.py │ └── what_is_python.md ├── modules/ │ ├── fibonacci_module.py │ ├── sound_package/ │ │ ├── __init__.py │ │ ├── effects/ │ │ │ ├── __init__.py │ │ │ ├── echo.py │ │ │ └── reverse.py │ │ └── formats/ │ │ ├── __init__.py │ │ ├── aif.py │ │ └── wav.py │ ├── test_modules.py │ └── test_packages.py ├── operators/ │ ├── test_arithmetic.py │ ├── test_assigment.py │ ├── test_bitwise.py │ ├── test_comparison.py │ ├── test_identity.py │ ├── test_logical.py │ └── test_membership.py ├── standard_libraries/ │ ├── glob_files/ │ │ ├── first_file.txt │ │ └── second_file.txt │ ├── test_datetime.py │ ├── test_glob.py │ ├── test_json.py │ ├── test_math.py │ ├── test_re.py │ └── test_zlib.py └── user_input/ └── test_input.py