├── Attributes-And-Methods ├── Attributes-And-Methods-Exercise │ ├── 01_photo_album.py │ ├── document_management_03 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── category.cpython-38.pyc │ │ │ ├── document.cpython-38.pyc │ │ │ └── topic.cpython-38.pyc │ │ │ ├── category.py │ │ │ ├── document.py │ │ │ ├── storage.py │ │ │ └── topic.py │ ├── gym_04 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── customer.cpython-38.pyc │ │ │ ├── equipment.cpython-38.pyc │ │ │ ├── exercise_plan.cpython-38.pyc │ │ │ ├── subscription.cpython-38.pyc │ │ │ └── trainer.cpython-38.pyc │ │ │ ├── customer.py │ │ │ ├── equipment.py │ │ │ ├── exercise_plan.py │ │ │ ├── gym.py │ │ │ ├── subscription.py │ │ │ └── trainer.py │ └── movie_world_02 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── customer.cpython-38.pyc │ │ └── dvd.cpython-38.pyc │ │ ├── customer.py │ │ ├── dvd.py │ │ └── movie_world.py ├── Attributes-And-Methods-Lab │ ├── 01_store.py │ ├── 02_integer.py │ ├── 03_calculator.py │ └── hotel_04 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ ├── __init__.py │ │ ├── __pycache__ │ │ └── room.cpython-38.pyc │ │ ├── hotel.py │ │ └── room.py └── Attributes-And-Methods-Resources │ ├── Attributes-and-Methods-Exercise.docx │ ├── Attributes-and-Methods-Lab.docx │ ├── Attributes-and-Methods.pptx │ ├── live stream exercise.txt │ └── live stream lab.txt ├── Classes-And-Instances ├── Classes-And-Instances-Exercise │ ├── account_03 │ │ ├── __init__.py │ │ └── project │ │ │ ├── __init__.py │ │ │ └── account.py │ ├── circle_02 │ │ ├── __init__.py │ │ └── project │ │ │ ├── __init__.py │ │ │ └── circle.py │ ├── employee_04 │ │ ├── __init__.py │ │ └── project │ │ │ ├── __init__.py │ │ │ └── employee.py │ ├── library_07 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── library.cpython-38.pyc │ │ │ └── user.cpython-38.pyc │ │ │ ├── library.py │ │ │ └── user.py │ ├── pizza_delivery_06 │ │ ├── __init__.py │ │ └── project │ │ │ ├── __init__.py │ │ │ └── pizza_delivery.py │ ├── point_01 │ │ ├── __init__.py │ │ └── project │ │ │ ├── __init__.py │ │ │ └── point.py │ └── time_05 │ │ ├── __init__.py │ │ └── project │ │ ├── __init__.py │ │ └── time.py ├── Classes-And-Instances-Lab │ ├── 01_smartphone.py │ ├── 02_vet.py │ └── 03_glass.py └── Classes-And-Instances-Resources │ ├── Classes-and-Instances-Exercise.docx │ ├── Classes-and-Instances-Lab.docx │ ├── Classes-and-Instances.pptx │ ├── live stream exercise.txt │ └── live stream lab.txt ├── Decorators ├── Decorators-Lab │ ├── 01_number_increment.py │ ├── 02_vowel_filter.py │ ├── 03_even_numbers.py │ └── 04_multiply.py ├── Decorators-Resources │ ├── Decorators-Exercises.docx │ ├── Decorators-Lab.docx │ ├── Decorators.pptx │ ├── live stream exercise.txt │ └── live stream lab.txt └── Decorators_Exercise │ ├── 01_logged.py │ ├── 02_even_parameters.py │ ├── 03_bold_italic_underline.py │ ├── 04_type_check.py │ ├── 05_cache.py │ ├── 06_HTML_tags.py │ ├── 07_execution_time.py │ ├── 08_store_results.py │ └── results.txt ├── Difining-Classes ├── Difining-Classes-Exercise │ ├── car_01 │ │ ├── __init__.py │ │ └── project │ │ │ ├── __init__.py │ │ │ └── car.py │ ├── guild_system_07 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ └── player.cpython-38.pyc │ │ │ ├── guild.py │ │ │ └── player.py │ ├── hero_03 │ │ ├── __init__.py │ │ └── project │ │ │ ├── __init__.py │ │ │ └── hero.py │ ├── pokemon_battle_06 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── pokemon.cpython-38.pyc │ │ │ └── trainer.cpython-38.pyc │ │ │ ├── pokemon.py │ │ │ └── trainer.py │ ├── programmer_05 │ │ ├── __init__.py │ │ └── project │ │ │ ├── __init__.py │ │ │ └── programmer.py │ ├── shop_02 │ │ ├── __init__.py │ │ └── project │ │ │ ├── __init__.py │ │ │ └── shop.py │ ├── spoopify_08 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── album.cpython-38.pyc │ │ │ └── song.cpython-38.pyc │ │ │ ├── album.py │ │ │ ├── band.py │ │ │ └── song.py │ ├── steam_user_04 │ │ ├── __init__.py │ │ └── project │ │ │ ├── __init__.py │ │ │ └── steam_user.py │ └── todo_list_09 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ ├── __init__.py │ │ ├── __pycache__ │ │ └── task.cpython-38.pyc │ │ ├── section.py │ │ └── task.py ├── Difining-Classes-Lab │ ├── 01_rhombus_of_stars.py │ ├── 02_class_book.py │ ├── 03_scope_mess.py │ ├── 04_music.py │ ├── 05_cup.py │ └── 06_flower.py └── Difining-Classes-Resources │ ├── Defining-Classes-Exercise.docx │ ├── Defining-Classes-Lab.docx │ ├── Defining-Classes.pptx │ ├── live stream exercise.txt │ └── live stream lab.txt ├── Encapsulation ├── Encapsulation-Exercise │ ├── football_team_generator_03 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ └── player.cpython-38.pyc │ │ │ ├── player.py │ │ │ └── team.py │ ├── pizza_calories_02 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── dough.cpython-38.pyc │ │ │ ├── pizza.cpython-38.pyc │ │ │ └── topping.cpython-38.pyc │ │ │ ├── dough.py │ │ │ ├── pizza.py │ │ │ └── topping.py │ └── wild_cat_zoo_01 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── caretaker.cpython-38.pyc │ │ ├── cheetah.cpython-38.pyc │ │ ├── keeper.cpython-38.pyc │ │ ├── lion.cpython-38.pyc │ │ ├── tiger.cpython-38.pyc │ │ └── vet.cpython-38.pyc │ │ ├── caretaker.py │ │ ├── cheetah.py │ │ ├── keeper.py │ │ ├── lion.py │ │ ├── tiger.py │ │ ├── vet.py │ │ └── zoo.py ├── Encapsulation-Lab │ ├── 01_person.py │ ├── 02_email_validator.py │ ├── 03_mammals.py │ └── 04_account.py └── Encapsulation-Resources │ ├── Encapsulation-Exercise.docx │ ├── Encapsulation-Lab.docx │ ├── Encapsulation.pptx │ ├── live stream exercise.txt │ └── live stream lab.txt ├── Exam_Preparation ├── exams │ ├── exam_16_aug_2020 │ │ ├── __init__.py │ │ ├── project.zip │ │ ├── project │ │ │ ├── __init__.py │ │ │ ├── hardware │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── hardware.cpython-38.pyc │ │ │ │ │ ├── heavy_hardware.cpython-38.pyc │ │ │ │ │ └── power_hardware.cpython-38.pyc │ │ │ │ ├── hardware.py │ │ │ │ ├── heavy_hardware.py │ │ │ │ └── power_hardware.py │ │ │ ├── main.py │ │ │ ├── software │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── express_software.cpython-38.pyc │ │ │ │ │ ├── light_software.cpython-38.pyc │ │ │ │ │ └── software.cpython-38.pyc │ │ │ │ ├── express_software.py │ │ │ │ ├── light_software.py │ │ │ │ └── software.py │ │ │ └── system.py │ │ ├── tests.zip │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_hardware.py │ ├── exam_preparation_02_april_2020 │ │ ├── __init__.py │ │ ├── project.zip │ │ ├── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── battle_field.cpython-38.pyc │ │ │ │ └── controller.cpython-38.pyc │ │ │ ├── battle_field.py │ │ │ ├── card │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── card.cpython-38.pyc │ │ │ │ │ ├── card_repository.cpython-38.pyc │ │ │ │ │ ├── magic_card.cpython-38.pyc │ │ │ │ │ └── trap_card.cpython-38.pyc │ │ │ │ ├── card.py │ │ │ │ ├── card_repository.py │ │ │ │ ├── magic_card.py │ │ │ │ └── trap_card.py │ │ │ ├── controller.py │ │ │ └── player │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── advanced.cpython-38.pyc │ │ │ │ ├── beginner.cpython-38.pyc │ │ │ │ ├── player.cpython-38.pyc │ │ │ │ └── player_repository.cpython-38.pyc │ │ │ │ ├── advanced.py │ │ │ │ ├── beginner.py │ │ │ │ ├── player.py │ │ │ │ └── player_repository.py │ │ ├── tests.zip │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── test_advanced.cpython-38.pyc │ │ │ ├── test_battlefield.cpython-38.pyc │ │ │ ├── test_beginner.cpython-38.pyc │ │ │ ├── test_card_repository.cpython-38.pyc │ │ │ ├── test_controller.cpython-38.pyc │ │ │ ├── test_magic_card.cpython-38.pyc │ │ │ ├── test_player_repository.cpython-38.pyc │ │ │ └── test_trap_card.cpython-38.pyc │ │ │ ├── test_advanced.py │ │ │ ├── test_battlefield.py │ │ │ ├── test_beginner.py │ │ │ ├── test_card_repository.py │ │ │ ├── test_controller.py │ │ │ ├── test_magic_card.py │ │ │ ├── test_player_repository.py │ │ │ └── test_trap_card.py │ └── exam_retake_19_dec_2020 │ │ ├── project.zip │ │ ├── project │ │ ├── __init__.py │ │ ├── bunker.py │ │ ├── medicine │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── medicine.py │ │ │ ├── painkiller.py │ │ │ └── salve.py │ │ ├── supply │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── food_supply.py │ │ │ ├── supply.py │ │ │ └── water_supply.py │ │ └── survivor.py │ │ ├── tests.zip │ │ └── tests │ │ ├── __init__.py │ │ ├── project │ │ ├── __init__.py │ │ └── factory │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── factory.cpython-38.pyc │ │ │ └── paint_factory.cpython-38.pyc │ │ │ ├── factory.py │ │ │ └── paint_factory.py │ │ └── test │ │ ├── __init__.py │ │ └── test_paint_factory.py └── resolving_problems │ ├── __init__.py │ ├── atributes_and_methods │ ├── __init__.py │ ├── document_management │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── category.cpython-38.pyc │ │ │ ├── document.cpython-38.pyc │ │ │ └── topic.cpython-38.pyc │ │ │ ├── category.py │ │ │ ├── document.py │ │ │ ├── storage.py │ │ │ └── topic.py │ ├── gym │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── customer.cpython-38.pyc │ │ │ ├── equipment.cpython-38.pyc │ │ │ ├── exercise_plan.cpython-38.pyc │ │ │ ├── subscription.cpython-38.pyc │ │ │ └── trainer.cpython-38.pyc │ │ │ ├── customer.py │ │ │ ├── equipment.py │ │ │ ├── exercise_plan.py │ │ │ ├── gym.py │ │ │ ├── subscription.py │ │ │ └── trainer.py │ ├── movie_world │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── customer.cpython-38.pyc │ │ │ └── dvd.cpython-38.pyc │ │ │ ├── customer.py │ │ │ ├── dvd.py │ │ │ └── movie_world.py │ └── photo_album.py │ ├── classes_and_instances │ ├── __init__.py │ ├── account.py │ ├── circle.py │ ├── employee.py │ ├── library │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ └── user.cpython-38.pyc │ │ │ ├── library.py │ │ │ └── user.py │ ├── pizza_delivery.py │ ├── point.py │ └── time.py │ ├── defining_classes │ ├── __init__.py │ ├── car.py │ ├── guild_system │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ └── player.cpython-38.pyc │ │ │ ├── guild.py │ │ │ └── player.py │ ├── hero.py │ ├── pokemon_battle │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ └── pokemon.cpython-38.pyc │ │ │ ├── pokemon.py │ │ │ └── trainer.py │ ├── programmer.py │ ├── shop.py │ ├── spoopify │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── album.cpython-38.pyc │ │ │ └── song.cpython-38.pyc │ │ │ ├── album.py │ │ │ ├── band.py │ │ │ └── song.py │ ├── steam_user.py │ └── todo_list │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ ├── __init__.py │ │ ├── __pycache__ │ │ └── task.cpython-38.pyc │ │ ├── section.py │ │ └── task.py │ ├── encapsulation │ ├── __init__.py │ ├── football_team_generator │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── player.py │ │ │ └── team.py │ ├── pizza_calories │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── dough.py │ │ │ ├── pizza.py │ │ │ └── topping.py │ └── wild_cat_zoo │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── caretaker.cpython-38.pyc │ │ ├── cheetah.cpython-38.pyc │ │ ├── keeper.cpython-38.pyc │ │ ├── lion.cpython-38.pyc │ │ ├── tiger.cpython-38.pyc │ │ └── vet.cpython-38.pyc │ │ ├── caretaker.py │ │ ├── cheetah.py │ │ ├── keeper.py │ │ ├── lion.py │ │ ├── tiger.py │ │ ├── vet.py │ │ └── zoo.py │ ├── inheritance │ ├── __init__.py │ ├── need_for_speed │ │ ├── __init__.py │ │ ├── project.zip │ │ ├── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── car.cpython-38.pyc │ │ │ │ ├── family_car.cpython-38.pyc │ │ │ │ └── vehicle.cpython-38.pyc │ │ │ ├── car.py │ │ │ ├── cross_motorcycle.py │ │ │ ├── family_car.py │ │ │ ├── motorcycle.py │ │ │ ├── race_motorcycle.py │ │ │ ├── sport_car.py │ │ │ └── vehicle.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── need_for_speed.py │ ├── person │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── person.cpython-38.pyc │ │ │ ├── child.py │ │ │ └── person.py │ ├── players_and_monsters │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── elf.cpython-38.pyc │ │ │ └── hero.cpython-38.pyc │ │ │ ├── blade_knight.py │ │ │ ├── dark_knight.py │ │ │ ├── dark_wizard.py │ │ │ ├── elf.py │ │ │ ├── hero.py │ │ │ ├── knight.py │ │ │ ├── muse_elf.py │ │ │ ├── soul_master.py │ │ │ └── wizard.py │ ├── restaurant │ │ ├── __init__.py │ │ ├── project.zip │ │ ├── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── product.cpython-38.pyc │ │ │ ├── beverage │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── beverage.cpython-38.pyc │ │ │ │ │ └── hot_beverage.cpython-38.pyc │ │ │ │ ├── beverage.py │ │ │ │ ├── coffee.py │ │ │ │ ├── cold_beverage.py │ │ │ │ ├── hot_beverage.py │ │ │ │ └── tea.py │ │ │ ├── food │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── food.cpython-38.pyc │ │ │ │ │ ├── soup.cpython-38.pyc │ │ │ │ │ └── starter.cpython-38.pyc │ │ │ │ ├── cake.py │ │ │ │ ├── dessert.py │ │ │ │ ├── food.py │ │ │ │ ├── main_dish.py │ │ │ │ ├── salmon.py │ │ │ │ ├── soup.py │ │ │ │ └── starter.py │ │ │ └── product.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── salmon.py │ └── zoo │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ ├── __init__.py │ │ ├── animal.py │ │ ├── bear.py │ │ ├── gorilla.py │ │ ├── lizard.py │ │ ├── mammal.py │ │ ├── reptile.py │ │ └── snake.py │ └── polymorphism_and_magic_methods │ ├── __init__.py │ ├── account.py │ ├── animals │ ├── __init__.py │ ├── project.zip │ └── project │ │ ├── __init__.py │ │ ├── animal.py │ │ ├── cat.py │ │ ├── dog.py │ │ ├── kitten.py │ │ └── tomcat.py │ ├── groups.py │ ├── vehicles.py │ └── wild_farm │ ├── __init__.py │ ├── project.zip │ ├── project │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── food.cpython-38.pyc │ ├── animals │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── animal.cpython-38.pyc │ │ │ └── birds.cpython-38.pyc │ │ ├── animal.py │ │ ├── birds.py │ │ └── mammals.py │ └── food.py │ └── test │ ├── __init__.py │ └── test.py ├── Inheritance ├── Inheritance-Lab │ ├── 04_random_list.py │ ├── 04_random_list_diff_dolution.py │ ├── 05_stack_of_strings.py │ ├── hierarchical_inheritance_03 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ └── animal.cpython-38.pyc │ │ │ ├── animal.py │ │ │ ├── cat.py │ │ │ └── dog.py │ ├── multiple_inheritance_02 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── employee.cpython-38.pyc │ │ │ └── person.cpython-38.pyc │ │ │ ├── employee.py │ │ │ ├── person.py │ │ │ └── teacher.py │ └── single_inheritance_01 │ │ ├── __init__.py │ │ ├── project.zip │ │ └── project │ │ ├── __init__.py │ │ ├── __pycache__ │ │ └── animal.cpython-38.pyc │ │ ├── animal.py │ │ └── dog.py ├── Inheritance-Resources │ ├── Inheritance-Exercises.docx │ ├── Inheritance-Lab.docx │ ├── Inheritance.pptx │ ├── live stream exercise.txt │ └── live stream lab.txt └── inheritance_exercise │ ├── need_for_speed_04 │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── project.zip │ ├── project │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── car.cpython-38.pyc │ │ │ ├── family_car.cpython-38.pyc │ │ │ ├── motorcycle.cpython-38.pyc │ │ │ ├── race_motorcycle.cpython-38.pyc │ │ │ └── vehicle.cpython-38.pyc │ │ ├── car.py │ │ ├── cross_motorcycle.py │ │ ├── family_car.py │ │ ├── motorcycle.py │ │ ├── race_motorcycle.py │ │ ├── sport_car.py │ │ └── vehicle.py │ └── test.py │ ├── person_01 │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── project.zip │ ├── project │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── child.cpython-38.pyc │ │ │ └── person.cpython-38.pyc │ │ ├── child.py │ │ └── person.py │ └── test.py │ ├── players_and_monsters_03 │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── project.zip │ ├── project │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── dark_knight.cpython-38.pyc │ │ │ ├── elf.cpython-38.pyc │ │ │ ├── hero.cpython-38.pyc │ │ │ ├── knight.cpython-38.pyc │ │ │ └── wizard.cpython-38.pyc │ │ ├── blade_knight.py │ │ ├── dark_knight.py │ │ ├── dark_wizard.py │ │ ├── elf.py │ │ ├── hero.py │ │ ├── knight.py │ │ ├── muse_elf.py │ │ ├── soul_master.py │ │ └── wizard.py │ └── test.py │ ├── restaurant_05 │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── project.zip │ ├── project │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── product.cpython-38.pyc │ │ ├── beverage │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── beverage.cpython-38.pyc │ │ │ │ ├── coffee.cpython-38.pyc │ │ │ │ ├── cold_beverage.cpython-38.pyc │ │ │ │ ├── hot_beverage.cpython-38.pyc │ │ │ │ └── tea.cpython-38.pyc │ │ │ ├── beverage.py │ │ │ ├── coffee.py │ │ │ ├── cold_beverage.py │ │ │ ├── hot_beverage.py │ │ │ └── tea.py │ │ ├── food │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── cake.cpython-38.pyc │ │ │ │ ├── dessert.cpython-38.pyc │ │ │ │ ├── food.cpython-38.pyc │ │ │ │ ├── main_dish.cpython-38.pyc │ │ │ │ ├── salmon.cpython-38.pyc │ │ │ │ ├── soup.cpython-38.pyc │ │ │ │ └── starter.cpython-38.pyc │ │ │ ├── cake.py │ │ │ ├── dessert.py │ │ │ ├── food.py │ │ │ ├── main_dish.py │ │ │ ├── salmon.py │ │ │ ├── soup.py │ │ │ └── starter.py │ │ └── product.py │ └── test.py │ └── zoo_02 │ ├── __init__.py │ ├── __pycache__ │ └── __init__.cpython-38.pyc │ ├── project.zip │ ├── project │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── animal.cpython-38.pyc │ │ ├── lizard.cpython-38.pyc │ │ ├── mammal.cpython-38.pyc │ │ └── reptile.cpython-38.pyc │ ├── animal.py │ ├── bear.py │ ├── gorilla.py │ ├── lizard.py │ ├── mammal.py │ ├── reptile.py │ └── snake.py │ └── test.py ├── Iterators-And-Generators ├── Iterators-And-Generators-Exercise │ ├── 01_take_skip.py │ ├── 02_dictionary_iterator.py │ ├── 03_countdown_iterator.py │ ├── 04_sequence_repeat.py │ ├── 05_take_halves.py │ ├── 06_fibonacci_generator.py │ ├── 07_reader.py │ ├── 08_prime_numbers.py │ └── 09_possible_permutations.py ├── Iterators-And-Generators-Lab │ ├── 01_custom_range.py │ ├── 02_reverse_iter.py │ ├── 03_vowels.py │ ├── 04_squares.py │ ├── 05_generator_range.py │ └── 06_reverse_string.py └── Iterators-And-Generators-Resources │ ├── Iterators-and-Generators-Exercise.docx │ ├── Iterators-and-Generators-Lab.docx │ ├── Iterators-and-Generators.pptx │ ├── live stream exercise.txt │ └── live stream lab.txt ├── Polymorphism-And-Magic-Methods ├── Polymorphism-And-Magic-Methods-Lab │ ├── 01_execute.py │ ├── 02_instruments.py │ ├── 03_shapes.py │ └── 04_image_area.py ├── Polymorphism-And-Magic-Methods-Resources │ ├── Polymorphism-Exercise.docx │ ├── Polymorphism-Lab.docx │ ├── Polymorphism.pptx │ ├── live stream exercise.txt │ └── live stream lab.txt └── polymorphism_and_magic_methods_exercise │ ├── 01_vehicles.py │ ├── 02_groups.py │ ├── 03_account.py │ ├── animals_05 │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── project.zip │ ├── project │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── animal.cpython-38.pyc │ │ │ ├── cat.cpython-38.pyc │ │ │ ├── dog.cpython-38.pyc │ │ │ ├── kitten.cpython-38.pyc │ │ │ └── tomcat.cpython-38.pyc │ │ ├── animal.py │ │ ├── cat.py │ │ ├── dog.py │ │ ├── kitten.py │ │ └── tomcat.py │ └── test.py │ └── wild_farm_04 │ ├── __init__.py │ ├── __pycache__ │ └── __init__.cpython-38.pyc │ ├── project.zip │ ├── project │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── food.cpython-38.pyc │ ├── animals │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── animal.cpython-38.pyc │ │ │ ├── birds.cpython-38.pyc │ │ │ └── mammals.cpython-38.pyc │ │ ├── animal.py │ │ ├── birds.py │ │ └── mammals.py │ └── food.py │ └── test.py ├── Python OOP - February 2021 - Certificate.jpeg ├── Python_OOP_Exam_10_April_2021 ├── project │ ├── __init__.py │ ├── aquarium │ │ ├── __init__.py │ │ ├── base_aquarium.py │ │ ├── freshwater_aquarium.py │ │ └── saltwater_aquarium.py │ ├── controller.py │ ├── decoration │ │ ├── __init__.py │ │ ├── base_decoration.py │ │ ├── decoration_repository.py │ │ ├── ornament.py │ │ └── plant.py │ ├── fish │ │ ├── __init__.py │ │ ├── base_fish.py │ │ ├── freshwater_fish.py │ │ └── saltwater_fish.py │ └── main.py ├── resources │ ├── Structure_Problem Description.docx │ ├── Structure_Skeleton.zip │ └── Unit Tests_Skeleton.zip └── tests │ ├── project │ ├── __init__.py │ └── train │ │ ├── __init__.py │ │ └── train.py │ └── tests │ ├── __init__.py │ └── test_train.py ├── Python_OOP_Retake_Exam_18_April_2021 ├── project │ ├── __init__.py │ ├── deliveries │ │ ├── __init__.py │ │ ├── drink.py │ │ ├── food.py │ │ ├── product.py │ │ └── product_repository.py │ ├── main.py │ ├── sales │ │ ├── __init__.py │ │ ├── customer.py │ │ └── customer_repository.py │ └── shop.py ├── resources │ ├── Structure_Problem-Description.docx │ ├── Structure_Skeleton.zip │ └── Unit Testing_Skeleton.zip └── tests │ ├── project │ ├── __init__.py │ └── survivor.py │ └── tests │ ├── __init__.py │ └── test_survivor.py ├── README.md ├── SOLID ├── SOLID-Exercise │ ├── emails.py │ ├── prisoner.py │ ├── shapes.py │ ├── workers.py │ └── workers_updated.py ├── SOLID-Lab │ ├── animal_OPC.py │ ├── animal_pythonic_way.py │ ├── books.py │ ├── entertainment_system.py │ ├── print_books.py │ └── robots.py └── SOLID-Resources │ ├── SOLID-Exercise.docx │ ├── SOLID-Exercise.zip │ ├── SOLID-Exercise │ ├── emails.py │ ├── prisoner.py │ ├── shapes.py │ ├── workers.py │ └── workers_updated.py │ ├── SOLID-Lab.docx │ ├── SOLID-Lab.zip │ ├── SOLID-Lab │ ├── .idea │ │ ├── SOLID LAB.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── 01_SRP │ │ ├── __init__.py │ │ └── books.py │ ├── 02_OCP │ │ ├── __init__.py │ │ └── animal.py │ ├── 03_LSP │ │ ├── __init__.py │ │ └── robots.py │ ├── 04_ISP │ │ ├── __init__.py │ │ └── entertainment_system.py │ └── 05_DIP │ │ ├── __init__.py │ │ └── print_books.py │ ├── SOLID.pptx │ ├── live stream exercise.txt │ └── live stream lab.txt ├── SoftUni-Logo.png └── Testing ├── Testing-Resources ├── Exercise-Resources.zip ├── Exercise-Resources │ ├── hero │ │ ├── project │ │ │ ├── __init__.py │ │ │ └── hero.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_hero.py │ ├── mammal │ │ ├── project │ │ │ ├── __init__.py │ │ │ └── mammal.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_mammal.py │ ├── student │ │ ├── project │ │ │ ├── __init__.py │ │ │ └── student.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_student.py │ └── vehicle │ │ ├── project │ │ ├── __init__.py │ │ └── vehicle.py │ │ └── test │ │ ├── __init__.py │ │ └── test_vehicle.py ├── Lab-Resources.zip ├── Lab-Resources │ ├── car_manager.py │ └── extended_list.py ├── Testing-Exercise.docx ├── Testing-Lab.docx └── Testing.pptx ├── __init__.py ├── testing_exercise ├── __init__.py ├── hero │ ├── __init__.py │ ├── project.zip │ └── project │ │ ├── __init__.py │ │ ├── project │ │ ├── __init__.py │ │ └── hero.py │ │ └── test │ │ ├── __init__.py │ │ └── test_hero.py ├── mammal │ ├── __init__.py │ ├── project.zip │ └── project │ │ ├── __init__.py │ │ ├── project │ │ ├── __init__.py │ │ └── mammal.py │ │ └── test │ │ ├── __init__.py │ │ └── test_mammal.py ├── student │ ├── __init__.py │ ├── project.zip │ └── project │ │ ├── __init__.py │ │ ├── project │ │ ├── __init__.py │ │ └── student.py │ │ └── tests │ │ ├── __init__.py │ │ └── test_student.py └── vehicle │ ├── __init__.py │ ├── project.zip │ └── project │ ├── __init__.py │ ├── project │ ├── __init__.py │ └── vehicle.py │ └── test │ ├── __init__.py │ └── test_vehicle.py └── testing_lab ├── Tests ├── __init__.py ├── car_manager │ ├── __init__.py │ └── test_car_manager.py ├── cat │ ├── __init__.py │ └── test_cat.py ├── list │ ├── __init__.py │ └── test_list.py └── worker │ ├── __init__.py │ └── test_worker.py ├── __init__.py ├── car_manager ├── __init__.py └── car_manager.py ├── cat ├── __init__.py └── cat.py ├── list ├── __init__.py └── list.py └── worker ├── __init__.py └── worker.py /Attributes-And-Methods/Attributes-And-Methods-Exercise/01_photo_album.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/01_photo_album.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/document_management_03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/document_management_03/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/document_management_03/project.zip -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/document_management_03/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/document_management_03/project/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/document_management_03/project/category.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/document_management_03/project/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/document_management_03/project/document.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/document_management_03/project/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/document_management_03/project/storage.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/document_management_03/project/topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/document_management_03/project/topic.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project.zip -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project/customer.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project/equipment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project/equipment.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project/exercise_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project/exercise_plan.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project/gym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project/gym.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project/subscription.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/gym_04/project/trainer.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/movie_world_02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/movie_world_02/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/movie_world_02/project.zip -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/movie_world_02/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/movie_world_02/project/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/movie_world_02/project/customer.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/movie_world_02/project/dvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/movie_world_02/project/dvd.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Exercise/movie_world_02/project/movie_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Exercise/movie_world_02/project/movie_world.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Lab/01_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Lab/01_store.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Lab/02_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Lab/02_integer.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Lab/03_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Lab/03_calculator.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Lab/hotel_04/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Lab/hotel_04/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Lab/hotel_04/project.zip -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Lab/hotel_04/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Lab/hotel_04/project/hotel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Lab/hotel_04/project/hotel.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Lab/hotel_04/project/room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Lab/hotel_04/project/room.py -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Resources/Attributes-and-Methods-Exercise.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Resources/Attributes-and-Methods-Exercise.docx -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Resources/Attributes-and-Methods-Lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Resources/Attributes-and-Methods-Lab.docx -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Resources/Attributes-and-Methods.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Attributes-And-Methods/Attributes-And-Methods-Resources/Attributes-and-Methods.pptx -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Resources/live stream exercise.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=PeGZLBS9GNw&t=1s -------------------------------------------------------------------------------- /Attributes-And-Methods/Attributes-And-Methods-Resources/live stream lab.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=YHbiPEBkH2M -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/account_03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/account_03/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/account_03/project/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Exercise/account_03/project/account.py -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/circle_02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/circle_02/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/circle_02/project/circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Exercise/circle_02/project/circle.py -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/employee_04/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/employee_04/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/employee_04/project/employee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Exercise/employee_04/project/employee.py -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/library_07/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/library_07/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Exercise/library_07/project.zip -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/library_07/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/library_07/project/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Exercise/library_07/project/library.py -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/library_07/project/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Exercise/library_07/project/user.py -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/pizza_delivery_06/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/pizza_delivery_06/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/pizza_delivery_06/project/pizza_delivery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Exercise/pizza_delivery_06/project/pizza_delivery.py -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/point_01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/point_01/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/point_01/project/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Exercise/point_01/project/point.py -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/time_05/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/time_05/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Exercise/time_05/project/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Exercise/time_05/project/time.py -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Lab/01_smartphone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Lab/01_smartphone.py -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Lab/02_vet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Lab/02_vet.py -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Lab/03_glass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Lab/03_glass.py -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Resources/Classes-and-Instances-Exercise.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Resources/Classes-and-Instances-Exercise.docx -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Resources/Classes-and-Instances-Lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Resources/Classes-and-Instances-Lab.docx -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Resources/Classes-and-Instances.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Classes-And-Instances/Classes-And-Instances-Resources/Classes-and-Instances.pptx -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Resources/live stream exercise.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=InLLr_YDlM4&feature=emb_title -------------------------------------------------------------------------------- /Classes-And-Instances/Classes-And-Instances-Resources/live stream lab.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=JKwJufSeWpY&feature=emb_title -------------------------------------------------------------------------------- /Decorators/Decorators-Lab/01_number_increment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators-Lab/01_number_increment.py -------------------------------------------------------------------------------- /Decorators/Decorators-Lab/02_vowel_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators-Lab/02_vowel_filter.py -------------------------------------------------------------------------------- /Decorators/Decorators-Lab/03_even_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators-Lab/03_even_numbers.py -------------------------------------------------------------------------------- /Decorators/Decorators-Lab/04_multiply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators-Lab/04_multiply.py -------------------------------------------------------------------------------- /Decorators/Decorators-Resources/Decorators-Exercises.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators-Resources/Decorators-Exercises.docx -------------------------------------------------------------------------------- /Decorators/Decorators-Resources/Decorators-Lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators-Resources/Decorators-Lab.docx -------------------------------------------------------------------------------- /Decorators/Decorators-Resources/Decorators.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators-Resources/Decorators.pptx -------------------------------------------------------------------------------- /Decorators/Decorators-Resources/live stream exercise.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=5xVQBOcM5y0&t=1s -------------------------------------------------------------------------------- /Decorators/Decorators-Resources/live stream lab.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=_IBKvOBZpLw -------------------------------------------------------------------------------- /Decorators/Decorators_Exercise/01_logged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators_Exercise/01_logged.py -------------------------------------------------------------------------------- /Decorators/Decorators_Exercise/02_even_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators_Exercise/02_even_parameters.py -------------------------------------------------------------------------------- /Decorators/Decorators_Exercise/03_bold_italic_underline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators_Exercise/03_bold_italic_underline.py -------------------------------------------------------------------------------- /Decorators/Decorators_Exercise/04_type_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators_Exercise/04_type_check.py -------------------------------------------------------------------------------- /Decorators/Decorators_Exercise/05_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators_Exercise/05_cache.py -------------------------------------------------------------------------------- /Decorators/Decorators_Exercise/06_HTML_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators_Exercise/06_HTML_tags.py -------------------------------------------------------------------------------- /Decorators/Decorators_Exercise/07_execution_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators_Exercise/07_execution_time.py -------------------------------------------------------------------------------- /Decorators/Decorators_Exercise/08_store_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators_Exercise/08_store_results.py -------------------------------------------------------------------------------- /Decorators/Decorators_Exercise/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Decorators/Decorators_Exercise/results.txt -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/car_01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/car_01/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/car_01/project/car.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/car_01/project/car.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/guild_system_07/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/guild_system_07/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/guild_system_07/project.zip -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/guild_system_07/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/guild_system_07/project/guild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/guild_system_07/project/guild.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/guild_system_07/project/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/guild_system_07/project/player.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/hero_03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/hero_03/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/hero_03/project/hero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/hero_03/project/hero.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/pokemon_battle_06/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/pokemon_battle_06/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/pokemon_battle_06/project.zip -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/pokemon_battle_06/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/pokemon_battle_06/project/pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/pokemon_battle_06/project/pokemon.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/pokemon_battle_06/project/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/pokemon_battle_06/project/trainer.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/programmer_05/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/programmer_05/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/programmer_05/project/programmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/programmer_05/project/programmer.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/shop_02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/shop_02/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/shop_02/project/shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/shop_02/project/shop.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/spoopify_08/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/spoopify_08/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/spoopify_08/project.zip -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/spoopify_08/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/spoopify_08/project/__pycache__/album.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/spoopify_08/project/__pycache__/album.cpython-38.pyc -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/spoopify_08/project/__pycache__/song.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/spoopify_08/project/__pycache__/song.cpython-38.pyc -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/spoopify_08/project/album.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/spoopify_08/project/album.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/spoopify_08/project/band.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/spoopify_08/project/band.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/spoopify_08/project/song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/spoopify_08/project/song.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/steam_user_04/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/steam_user_04/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/steam_user_04/project/steam_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/steam_user_04/project/steam_user.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/todo_list_09/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/todo_list_09/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/todo_list_09/project.zip -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/todo_list_09/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/todo_list_09/project/__pycache__/task.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/todo_list_09/project/__pycache__/task.cpython-38.pyc -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/todo_list_09/project/section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/todo_list_09/project/section.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Exercise/todo_list_09/project/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Exercise/todo_list_09/project/task.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Lab/01_rhombus_of_stars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Lab/01_rhombus_of_stars.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Lab/02_class_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Lab/02_class_book.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Lab/03_scope_mess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Lab/03_scope_mess.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Lab/04_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Lab/04_music.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Lab/05_cup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Lab/05_cup.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Lab/06_flower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Lab/06_flower.py -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Resources/Defining-Classes-Exercise.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Resources/Defining-Classes-Exercise.docx -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Resources/Defining-Classes-Lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Resources/Defining-Classes-Lab.docx -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Resources/Defining-Classes.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Difining-Classes/Difining-Classes-Resources/Defining-Classes.pptx -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Resources/live stream exercise.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=ZaXE8eXw5yY&feature=emb_title -------------------------------------------------------------------------------- /Difining-Classes/Difining-Classes-Resources/live stream lab.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=sxRknIFpUIM&feature=emb_title -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/football_team_generator_03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/football_team_generator_03/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/football_team_generator_03/project.zip -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/football_team_generator_03/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/football_team_generator_03/project/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/football_team_generator_03/project/player.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/football_team_generator_03/project/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/football_team_generator_03/project/team.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/pizza_calories_02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/pizza_calories_02/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/pizza_calories_02/project.zip -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/pizza_calories_02/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/pizza_calories_02/project/__pycache__/dough.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/pizza_calories_02/project/__pycache__/dough.cpython-38.pyc -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/pizza_calories_02/project/__pycache__/pizza.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/pizza_calories_02/project/__pycache__/pizza.cpython-38.pyc -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/pizza_calories_02/project/dough.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/pizza_calories_02/project/dough.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/pizza_calories_02/project/pizza.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/pizza_calories_02/project/pizza.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/pizza_calories_02/project/topping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/pizza_calories_02/project/topping.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project.zip -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/__pycache__/cheetah.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/__pycache__/cheetah.cpython-38.pyc -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/__pycache__/keeper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/__pycache__/keeper.cpython-38.pyc -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/__pycache__/lion.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/__pycache__/lion.cpython-38.pyc -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/__pycache__/tiger.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/__pycache__/tiger.cpython-38.pyc -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/__pycache__/vet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/__pycache__/vet.cpython-38.pyc -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/caretaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/caretaker.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/cheetah.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/cheetah.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/keeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/keeper.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/lion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/lion.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/tiger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/tiger.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/vet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/vet.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Exercise/wild_cat_zoo_01/project/zoo.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Lab/01_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Lab/01_person.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Lab/02_email_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Lab/02_email_validator.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Lab/03_mammals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Lab/03_mammals.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Lab/04_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Lab/04_account.py -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Resources/Encapsulation-Exercise.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Resources/Encapsulation-Exercise.docx -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Resources/Encapsulation-Lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Resources/Encapsulation-Lab.docx -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Resources/Encapsulation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Encapsulation/Encapsulation-Resources/Encapsulation.pptx -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Resources/live stream exercise.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=LlkhyFlPSxI -------------------------------------------------------------------------------- /Encapsulation/Encapsulation-Resources/live stream lab.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=3Qhe7OpR5-0&t=1s -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/hardware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/hardware/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/project/hardware/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/hardware/__pycache__/hardware.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/project/hardware/__pycache__/hardware.cpython-38.pyc -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/hardware/hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/project/hardware/hardware.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/hardware/heavy_hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/project/hardware/heavy_hardware.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/hardware/power_hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/project/hardware/power_hardware.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/project/main.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/software/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/software/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/project/software/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/software/__pycache__/software.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/project/software/__pycache__/software.cpython-38.pyc -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/software/express_software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/project/software/express_software.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/software/light_software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/project/software/light_software.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/software/software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/project/software/software.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/project/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/project/system.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/tests.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/tests.zip -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_16_aug_2020/tests/test_hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_16_aug_2020/tests/test_hardware.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project/battle_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/project/battle_field.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project/card/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project/card/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/project/card/card.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project/card/card_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/project/card/card_repository.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project/card/magic_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/project/card/magic_card.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project/card/trap_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/project/card/trap_card.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/project/controller.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project/player/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project/player/advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/project/player/advanced.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project/player/beginner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/project/player/beginner.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project/player/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/project/player/player.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/project/player/player_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/project/player/player_repository.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/tests.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/tests.zip -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/tests/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/tests/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_advanced.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_battlefield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_battlefield.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_beginner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_beginner.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_card_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_card_repository.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_controller.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_magic_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_magic_card.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_player_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_player_repository.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_trap_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_preparation_02_april_2020/tests/test_trap_card.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_retake_19_dec_2020/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/project/bunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_retake_19_dec_2020/project/bunker.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/project/medicine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/project/medicine/medicine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_retake_19_dec_2020/project/medicine/medicine.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/project/medicine/painkiller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_retake_19_dec_2020/project/medicine/painkiller.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/project/medicine/salve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_retake_19_dec_2020/project/medicine/salve.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/project/supply/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/project/supply/food_supply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_retake_19_dec_2020/project/supply/food_supply.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/project/supply/supply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_retake_19_dec_2020/project/supply/supply.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/project/supply/water_supply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_retake_19_dec_2020/project/supply/water_supply.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/project/survivor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_retake_19_dec_2020/project/survivor.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/tests.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_retake_19_dec_2020/tests.zip -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/tests/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/tests/project/factory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/tests/project/factory/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_retake_19_dec_2020/tests/project/factory/factory.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/tests/project/factory/paint_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_retake_19_dec_2020/tests/project/factory/paint_factory.py -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/tests/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/exams/exam_retake_19_dec_2020/tests/test/test_paint_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/exams/exam_retake_19_dec_2020/tests/test/test_paint_factory.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/document_management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/document_management/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/document_management/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/document_management/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/document_management/project/topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/document_management/project/topic.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/gym/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/gym/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/gym/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/gym/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/gym/project/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/gym/project/customer.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/gym/project/equipment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/gym/project/equipment.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/gym/project/exercise_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/gym/project/exercise_plan.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/gym/project/gym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/gym/project/gym.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/gym/project/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/gym/project/subscription.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/gym/project/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/gym/project/trainer.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/movie_world/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/movie_world/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/movie_world/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/movie_world/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/movie_world/project/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/movie_world/project/customer.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/movie_world/project/dvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/movie_world/project/dvd.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/movie_world/project/movie_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/movie_world/project/movie_world.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/atributes_and_methods/photo_album.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/atributes_and_methods/photo_album.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/classes_and_instances/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/classes_and_instances/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/classes_and_instances/account.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/classes_and_instances/circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/classes_and_instances/circle.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/classes_and_instances/employee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/classes_and_instances/employee.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/classes_and_instances/library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/classes_and_instances/library/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/classes_and_instances/library/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/classes_and_instances/library/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/classes_and_instances/library/project/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/classes_and_instances/library/project/library.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/classes_and_instances/library/project/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/classes_and_instances/library/project/user.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/classes_and_instances/pizza_delivery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/classes_and_instances/pizza_delivery.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/classes_and_instances/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/classes_and_instances/point.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/classes_and_instances/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/classes_and_instances/time.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/car.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/car.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/guild_system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/guild_system/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/guild_system/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/guild_system/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/guild_system/project/guild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/guild_system/project/guild.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/guild_system/project/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/guild_system/project/player.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/hero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/hero.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/pokemon_battle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/pokemon_battle/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/pokemon_battle/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/pokemon_battle/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/pokemon_battle/project/pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/pokemon_battle/project/pokemon.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/pokemon_battle/project/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/pokemon_battle/project/trainer.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/programmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/programmer.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/shop.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/spoopify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/spoopify/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/spoopify/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/spoopify/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/spoopify/project/album.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/spoopify/project/album.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/spoopify/project/band.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/spoopify/project/band.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/spoopify/project/song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/spoopify/project/song.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/steam_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/steam_user.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/todo_list/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/todo_list/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/todo_list/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/todo_list/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/todo_list/project/section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/todo_list/project/section.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/defining_classes/todo_list/project/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/defining_classes/todo_list/project/task.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/football_team_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/football_team_generator/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/football_team_generator/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/football_team_generator/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/football_team_generator/project/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/football_team_generator/project/player.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/football_team_generator/project/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/football_team_generator/project/team.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/pizza_calories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/pizza_calories/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/pizza_calories/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/pizza_calories/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/pizza_calories/project/dough.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/pizza_calories/project/dough.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/pizza_calories/project/pizza.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/pizza_calories/project/pizza.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/pizza_calories/project/topping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/pizza_calories/project/topping.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/caretaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/caretaker.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/cheetah.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/cheetah.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/keeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/keeper.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/lion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/lion.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/tiger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/tiger.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/vet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/vet.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/encapsulation/wild_cat_zoo/project/zoo.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/need_for_speed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/need_for_speed/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/need_for_speed/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/car.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/car.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/cross_motorcycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/cross_motorcycle.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/family_car.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/family_car.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/motorcycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/motorcycle.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/race_motorcycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/race_motorcycle.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/sport_car.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/sport_car.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/vehicle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/need_for_speed/project/vehicle.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/need_for_speed/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/need_for_speed/tests/need_for_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/need_for_speed/tests/need_for_speed.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/person/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/person/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/person/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/person/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/person/project/child.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/person/project/child.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/person/project/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/person/project/person.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/players_and_monsters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/blade_knight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/blade_knight.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/dark_knight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/dark_knight.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/dark_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/dark_wizard.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/elf.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/hero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/hero.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/knight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/knight.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/muse_elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/muse_elf.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/soul_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/soul_master.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/players_and_monsters/project/wizard.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/beverage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/beverage/beverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project/beverage/beverage.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/beverage/coffee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project/beverage/coffee.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/beverage/cold_beverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project/beverage/cold_beverage.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/beverage/hot_beverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project/beverage/hot_beverage.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/beverage/tea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project/beverage/tea.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/cake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/cake.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/dessert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/dessert.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/food.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/food.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/main_dish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/main_dish.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/salmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/salmon.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/soup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/soup.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project/food/starter.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/project/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/project/product.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/restaurant/tests/salmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/restaurant/tests/salmon.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/zoo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/zoo/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/zoo/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/zoo/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/zoo/project/animal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/zoo/project/animal.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/zoo/project/bear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/zoo/project/bear.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/zoo/project/gorilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/zoo/project/gorilla.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/zoo/project/lizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/zoo/project/lizard.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/zoo/project/mammal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/zoo/project/mammal.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/zoo/project/reptile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/zoo/project/reptile.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/inheritance/zoo/project/snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/inheritance/zoo/project/snake.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/account.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/project/animal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/project/animal.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/project/cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/project/cat.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/project/dog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/project/dog.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/project/kitten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/project/kitten.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/project/tomcat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/animals/project/tomcat.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/groups.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/vehicles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/vehicles.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/wild_farm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/wild_farm/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/wild_farm/project.zip -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/wild_farm/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/wild_farm/project/animals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/wild_farm/project/food.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/wild_farm/project/food.py -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/wild_farm/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/wild_farm/test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Exam_Preparation/resolving_problems/polymorphism_and_magic_methods/wild_farm/test/test.py -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/04_random_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/04_random_list.py -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/04_random_list_diff_dolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/04_random_list_diff_dolution.py -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/05_stack_of_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/05_stack_of_strings.py -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/hierarchical_inheritance_03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/hierarchical_inheritance_03/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/hierarchical_inheritance_03/project.zip -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/hierarchical_inheritance_03/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/hierarchical_inheritance_03/project/animal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/hierarchical_inheritance_03/project/animal.py -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/hierarchical_inheritance_03/project/cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/hierarchical_inheritance_03/project/cat.py -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/hierarchical_inheritance_03/project/dog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/hierarchical_inheritance_03/project/dog.py -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/multiple_inheritance_02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/multiple_inheritance_02/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/multiple_inheritance_02/project.zip -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/multiple_inheritance_02/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/multiple_inheritance_02/project/__pycache__/employee.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/multiple_inheritance_02/project/__pycache__/employee.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/multiple_inheritance_02/project/__pycache__/person.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/multiple_inheritance_02/project/__pycache__/person.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/multiple_inheritance_02/project/employee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/multiple_inheritance_02/project/employee.py -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/multiple_inheritance_02/project/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/multiple_inheritance_02/project/person.py -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/multiple_inheritance_02/project/teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/multiple_inheritance_02/project/teacher.py -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/single_inheritance_01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/single_inheritance_01/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/single_inheritance_01/project.zip -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/single_inheritance_01/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/single_inheritance_01/project/__pycache__/animal.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/single_inheritance_01/project/__pycache__/animal.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/single_inheritance_01/project/animal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/single_inheritance_01/project/animal.py -------------------------------------------------------------------------------- /Inheritance/Inheritance-Lab/single_inheritance_01/project/dog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Lab/single_inheritance_01/project/dog.py -------------------------------------------------------------------------------- /Inheritance/Inheritance-Resources/Inheritance-Exercises.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Resources/Inheritance-Exercises.docx -------------------------------------------------------------------------------- /Inheritance/Inheritance-Resources/Inheritance-Lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Resources/Inheritance-Lab.docx -------------------------------------------------------------------------------- /Inheritance/Inheritance-Resources/Inheritance.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/Inheritance-Resources/Inheritance.pptx -------------------------------------------------------------------------------- /Inheritance/Inheritance-Resources/live stream exercise.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=vX2EJQ6a6ig -------------------------------------------------------------------------------- /Inheritance/Inheritance-Resources/live stream lab.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=TFEipVgunPo -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/need_for_speed_04/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/need_for_speed_04/project.zip -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/project/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/need_for_speed_04/project/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/project/__pycache__/car.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/need_for_speed_04/project/__pycache__/car.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/project/__pycache__/vehicle.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/need_for_speed_04/project/__pycache__/vehicle.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/project/car.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/need_for_speed_04/project/car.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/project/cross_motorcycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/need_for_speed_04/project/cross_motorcycle.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/project/family_car.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/need_for_speed_04/project/family_car.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/project/motorcycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/need_for_speed_04/project/motorcycle.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/project/race_motorcycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/need_for_speed_04/project/race_motorcycle.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/project/sport_car.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/need_for_speed_04/project/sport_car.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/project/vehicle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/need_for_speed_04/project/vehicle.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/need_for_speed_04/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/need_for_speed_04/test.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/person_01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/person_01/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/person_01/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/person_01/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/person_01/project.zip -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/person_01/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/person_01/project/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/person_01/project/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/person_01/project/__pycache__/child.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/person_01/project/__pycache__/child.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/person_01/project/__pycache__/person.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/person_01/project/__pycache__/person.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/person_01/project/child.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/person_01/project/child.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/person_01/project/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/person_01/project/person.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/person_01/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/person_01/test.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/players_and_monsters_03/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/players_and_monsters_03/project.zip -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/project/__pycache__/elf.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/players_and_monsters_03/project/__pycache__/elf.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/project/blade_knight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/players_and_monsters_03/project/blade_knight.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/project/dark_knight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/players_and_monsters_03/project/dark_knight.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/project/dark_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/players_and_monsters_03/project/dark_wizard.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/project/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/players_and_monsters_03/project/elf.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/project/hero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/players_and_monsters_03/project/hero.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/project/knight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/players_and_monsters_03/project/knight.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/project/muse_elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/players_and_monsters_03/project/muse_elf.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/project/soul_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/players_and_monsters_03/project/soul_master.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/project/wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/players_and_monsters_03/project/wizard.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/players_and_monsters_03/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/players_and_monsters_03/test.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project.zip -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/__pycache__/product.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/__pycache__/product.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/beverage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/beverage/__pycache__/tea.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/beverage/__pycache__/tea.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/beverage/beverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/beverage/beverage.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/beverage/coffee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/beverage/coffee.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/beverage/cold_beverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/beverage/cold_beverage.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/beverage/hot_beverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/beverage/hot_beverage.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/beverage/tea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/beverage/tea.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/cake.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/cake.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/dessert.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/dessert.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/food.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/food.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/salmon.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/salmon.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/soup.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/soup.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/starter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/__pycache__/starter.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/cake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/cake.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/dessert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/dessert.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/food.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/food.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/main_dish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/main_dish.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/salmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/salmon.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/soup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/soup.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/food/starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/food/starter.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/project/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/project/product.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/restaurant_05/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/restaurant_05/test.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/project.zip -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/project/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project/__pycache__/animal.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/project/__pycache__/animal.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project/__pycache__/lizard.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/project/__pycache__/lizard.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project/__pycache__/mammal.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/project/__pycache__/mammal.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project/__pycache__/reptile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/project/__pycache__/reptile.cpython-38.pyc -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project/animal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/project/animal.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project/bear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/project/bear.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project/gorilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/project/gorilla.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project/lizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/project/lizard.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project/mammal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/project/mammal.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project/reptile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/project/reptile.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/project/snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/project/snake.py -------------------------------------------------------------------------------- /Inheritance/inheritance_exercise/zoo_02/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Inheritance/inheritance_exercise/zoo_02/test.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Exercise/01_take_skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Exercise/01_take_skip.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Exercise/02_dictionary_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Exercise/02_dictionary_iterator.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Exercise/03_countdown_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Exercise/03_countdown_iterator.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Exercise/04_sequence_repeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Exercise/04_sequence_repeat.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Exercise/05_take_halves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Exercise/05_take_halves.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Exercise/06_fibonacci_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Exercise/06_fibonacci_generator.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Exercise/07_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Exercise/07_reader.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Exercise/08_prime_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Exercise/08_prime_numbers.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Exercise/09_possible_permutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Exercise/09_possible_permutations.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Lab/01_custom_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Lab/01_custom_range.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Lab/02_reverse_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Lab/02_reverse_iter.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Lab/03_vowels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Lab/03_vowels.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Lab/04_squares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Lab/04_squares.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Lab/05_generator_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Lab/05_generator_range.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Lab/06_reverse_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Lab/06_reverse_string.py -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Resources/Iterators-and-Generators-Lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Resources/Iterators-and-Generators-Lab.docx -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Resources/Iterators-and-Generators.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Iterators-And-Generators/Iterators-And-Generators-Resources/Iterators-and-Generators.pptx -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Resources/live stream exercise.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=I9E2MN2OBdY -------------------------------------------------------------------------------- /Iterators-And-Generators/Iterators-And-Generators-Resources/live stream lab.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=Xm3E37hY0JE -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Lab/01_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Lab/01_execute.py -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Lab/02_instruments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Lab/02_instruments.py -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Lab/03_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Lab/03_shapes.py -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Lab/04_image_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Lab/04_image_area.py -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Resources/Polymorphism-Lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Resources/Polymorphism-Lab.docx -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Resources/Polymorphism.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Resources/Polymorphism.pptx -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Resources/live stream exercise.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=FOB6sBAnGyA&t=6s -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/Polymorphism-And-Magic-Methods-Resources/live stream lab.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=lh-X2XYIL4o&t=8s -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/01_vehicles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/01_vehicles.py -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/02_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/02_groups.py -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/03_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/03_account.py -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/animals_05/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/animals_05/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/animals_05/project.zip -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/animals_05/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/animals_05/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/animals_05/test.py -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/wild_farm_04/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/wild_farm_04/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/wild_farm_04/project.zip -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/wild_farm_04/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/wild_farm_04/project/animals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/wild_farm_04/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Polymorphism-And-Magic-Methods/polymorphism_and_magic_methods_exercise/wild_farm_04/test.py -------------------------------------------------------------------------------- /Python OOP - February 2021 - Certificate.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python OOP - February 2021 - Certificate.jpeg -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/aquarium/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/aquarium/base_aquarium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/project/aquarium/base_aquarium.py -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/aquarium/freshwater_aquarium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/project/aquarium/freshwater_aquarium.py -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/aquarium/saltwater_aquarium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/project/aquarium/saltwater_aquarium.py -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/project/controller.py -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/decoration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/decoration/base_decoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/project/decoration/base_decoration.py -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/decoration/decoration_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/project/decoration/decoration_repository.py -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/decoration/ornament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/project/decoration/ornament.py -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/decoration/plant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/project/decoration/plant.py -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/fish/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/fish/base_fish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/project/fish/base_fish.py -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/fish/freshwater_fish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/project/fish/freshwater_fish.py -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/fish/saltwater_fish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/project/fish/saltwater_fish.py -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/project/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/resources/Structure_Problem Description.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/resources/Structure_Problem Description.docx -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/resources/Structure_Skeleton.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/resources/Structure_Skeleton.zip -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/resources/Unit Tests_Skeleton.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/resources/Unit Tests_Skeleton.zip -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/tests/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/tests/project/train/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/tests/project/train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/tests/project/train/train.py -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/tests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Python_OOP_Exam_10_April_2021/tests/tests/test_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Exam_10_April_2021/tests/tests/test_train.py -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/project/deliveries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/project/deliveries/drink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Retake_Exam_18_April_2021/project/deliveries/drink.py -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/project/deliveries/food.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Retake_Exam_18_April_2021/project/deliveries/food.py -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/project/deliveries/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Retake_Exam_18_April_2021/project/deliveries/product.py -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/project/deliveries/product_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Retake_Exam_18_April_2021/project/deliveries/product_repository.py -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/project/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/project/sales/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/project/sales/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Retake_Exam_18_April_2021/project/sales/customer.py -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/project/sales/customer_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Retake_Exam_18_April_2021/project/sales/customer_repository.py -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/project/shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Retake_Exam_18_April_2021/project/shop.py -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/resources/Structure_Problem-Description.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Retake_Exam_18_April_2021/resources/Structure_Problem-Description.docx -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/resources/Structure_Skeleton.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Retake_Exam_18_April_2021/resources/Structure_Skeleton.zip -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/resources/Unit Testing_Skeleton.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Retake_Exam_18_April_2021/resources/Unit Testing_Skeleton.zip -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/tests/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/tests/project/survivor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Retake_Exam_18_April_2021/tests/project/survivor.py -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/tests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python_OOP_Retake_Exam_18_April_2021/tests/tests/test_survivor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Python_OOP_Retake_Exam_18_April_2021/tests/tests/test_survivor.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/README.md -------------------------------------------------------------------------------- /SOLID/SOLID-Exercise/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Exercise/emails.py -------------------------------------------------------------------------------- /SOLID/SOLID-Exercise/prisoner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Exercise/prisoner.py -------------------------------------------------------------------------------- /SOLID/SOLID-Exercise/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Exercise/shapes.py -------------------------------------------------------------------------------- /SOLID/SOLID-Exercise/workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Exercise/workers.py -------------------------------------------------------------------------------- /SOLID/SOLID-Exercise/workers_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Exercise/workers_updated.py -------------------------------------------------------------------------------- /SOLID/SOLID-Lab/animal_OPC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Lab/animal_OPC.py -------------------------------------------------------------------------------- /SOLID/SOLID-Lab/animal_pythonic_way.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Lab/animal_pythonic_way.py -------------------------------------------------------------------------------- /SOLID/SOLID-Lab/books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Lab/books.py -------------------------------------------------------------------------------- /SOLID/SOLID-Lab/entertainment_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Lab/entertainment_system.py -------------------------------------------------------------------------------- /SOLID/SOLID-Lab/print_books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Lab/print_books.py -------------------------------------------------------------------------------- /SOLID/SOLID-Lab/robots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Lab/robots.py -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Exercise.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Exercise.docx -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Exercise.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Exercise.zip -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Exercise/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Exercise/emails.py -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Exercise/prisoner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Exercise/prisoner.py -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Exercise/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Exercise/shapes.py -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Exercise/workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Exercise/workers.py -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Exercise/workers_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Exercise/workers_updated.py -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Lab.docx -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Lab.zip -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/.idea/SOLID LAB.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Lab/.idea/SOLID LAB.iml -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Lab/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Lab/.idea/misc.xml -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Lab/.idea/modules.xml -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Lab/.idea/workspace.xml -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/01_SRP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/01_SRP/books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Lab/01_SRP/books.py -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/02_OCP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/02_OCP/animal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Lab/02_OCP/animal.py -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/03_LSP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/03_LSP/robots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Lab/03_LSP/robots.py -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/04_ISP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/04_ISP/entertainment_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Lab/04_ISP/entertainment_system.py -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/05_DIP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID-Lab/05_DIP/print_books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID-Lab/05_DIP/print_books.py -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/SOLID.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SOLID/SOLID-Resources/SOLID.pptx -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/live stream exercise.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=GcLYgs7HCiA -------------------------------------------------------------------------------- /SOLID/SOLID-Resources/live stream lab.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=PRvnGfwIO8M -------------------------------------------------------------------------------- /SoftUni-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/SoftUni-Logo.png -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/Testing-Resources/Exercise-Resources.zip -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/hero/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/hero/project/hero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/Testing-Resources/Exercise-Resources/hero/project/hero.py -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/hero/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/hero/test/test_hero.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/mammal/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/mammal/project/mammal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/Testing-Resources/Exercise-Resources/mammal/project/mammal.py -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/mammal/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/mammal/test/test_mammal.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/student/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/student/project/student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/Testing-Resources/Exercise-Resources/student/project/student.py -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/student/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/student/tests/test_student.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/vehicle/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/vehicle/project/vehicle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/Testing-Resources/Exercise-Resources/vehicle/project/vehicle.py -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/vehicle/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/Testing-Resources/Exercise-Resources/vehicle/test/test_vehicle.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/Testing-Resources/Lab-Resources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/Testing-Resources/Lab-Resources.zip -------------------------------------------------------------------------------- /Testing/Testing-Resources/Lab-Resources/car_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/Testing-Resources/Lab-Resources/car_manager.py -------------------------------------------------------------------------------- /Testing/Testing-Resources/Lab-Resources/extended_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/Testing-Resources/Lab-Resources/extended_list.py -------------------------------------------------------------------------------- /Testing/Testing-Resources/Testing-Exercise.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/Testing-Resources/Testing-Exercise.docx -------------------------------------------------------------------------------- /Testing/Testing-Resources/Testing-Lab.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/Testing-Resources/Testing-Lab.docx -------------------------------------------------------------------------------- /Testing/Testing-Resources/Testing.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/Testing-Resources/Testing.pptx -------------------------------------------------------------------------------- /Testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/hero/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/hero/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_exercise/hero/project.zip -------------------------------------------------------------------------------- /Testing/testing_exercise/hero/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/hero/project/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/hero/project/project/hero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_exercise/hero/project/project/hero.py -------------------------------------------------------------------------------- /Testing/testing_exercise/hero/project/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/hero/project/test/test_hero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_exercise/hero/project/test/test_hero.py -------------------------------------------------------------------------------- /Testing/testing_exercise/mammal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/mammal/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_exercise/mammal/project.zip -------------------------------------------------------------------------------- /Testing/testing_exercise/mammal/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/mammal/project/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/mammal/project/project/mammal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_exercise/mammal/project/project/mammal.py -------------------------------------------------------------------------------- /Testing/testing_exercise/mammal/project/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/mammal/project/test/test_mammal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_exercise/mammal/project/test/test_mammal.py -------------------------------------------------------------------------------- /Testing/testing_exercise/student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/student/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_exercise/student/project.zip -------------------------------------------------------------------------------- /Testing/testing_exercise/student/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/student/project/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/student/project/project/student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_exercise/student/project/project/student.py -------------------------------------------------------------------------------- /Testing/testing_exercise/student/project/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/student/project/tests/test_student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_exercise/student/project/tests/test_student.py -------------------------------------------------------------------------------- /Testing/testing_exercise/vehicle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/vehicle/project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_exercise/vehicle/project.zip -------------------------------------------------------------------------------- /Testing/testing_exercise/vehicle/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/vehicle/project/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/vehicle/project/project/vehicle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_exercise/vehicle/project/project/vehicle.py -------------------------------------------------------------------------------- /Testing/testing_exercise/vehicle/project/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_exercise/vehicle/project/test/test_vehicle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_exercise/vehicle/project/test/test_vehicle.py -------------------------------------------------------------------------------- /Testing/testing_lab/Tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_lab/Tests/car_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_lab/Tests/car_manager/test_car_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_lab/Tests/car_manager/test_car_manager.py -------------------------------------------------------------------------------- /Testing/testing_lab/Tests/cat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_lab/Tests/cat/test_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_lab/Tests/cat/test_cat.py -------------------------------------------------------------------------------- /Testing/testing_lab/Tests/list/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_lab/Tests/list/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_lab/Tests/list/test_list.py -------------------------------------------------------------------------------- /Testing/testing_lab/Tests/worker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_lab/Tests/worker/test_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_lab/Tests/worker/test_worker.py -------------------------------------------------------------------------------- /Testing/testing_lab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_lab/car_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_lab/car_manager/car_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_lab/car_manager/car_manager.py -------------------------------------------------------------------------------- /Testing/testing_lab/cat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_lab/cat/cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_lab/cat/cat.py -------------------------------------------------------------------------------- /Testing/testing_lab/list/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_lab/list/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_lab/list/list.py -------------------------------------------------------------------------------- /Testing/testing_lab/worker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Testing/testing_lab/worker/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momchilantonov/SoftUni-Python-OOP-February-2021/HEAD/Testing/testing_lab/worker/worker.py --------------------------------------------------------------------------------