Торрент софт » Обучающие программы » Компьютеры, обуч.видео » Python Essential [ITVDN] (2016) PCRec скачать торрент файл бесплатно

 

Python Essential [ITVDN] (2016) PCRec

Автор: Baguvix от 22-09-2021, 23:10, Посмотрело: 3 892, Обсуждения: 0

Название: Python Essential
Автор: ITVDN
Год выхода: 2016
Жанр: Программирование, Phyton
Язык: Русский

Описание: Курс Python Essential рассчитан для изучения принципов Python. Он предоставляет понятие о его синтаксисе, обширном числе используемых разработчиками возможностями и спецификой. Существенное внимание уделяется парадигмам объектно-ориентированного программирования и их реализации в Python. Рассматривается работа с коллекциями, стандартные типы данных, итераторы и генераторы. Разбирается работа с модулями и библиотеками, предоставляется лаконичный обзор возможностей стандартной библиотеки Python. Изъясняется работа с исключениями, а также с стандартными исключениями в Python.





Выпущено: Россия
Продолжительность: 17:11:48

Файл
Формат: MP4 (+ доп. материалы)
Видео: AVC/H.264, 1280x720, ~122 kbps
Аудио: AAC, 2 ch, 125 kbps, CBR



Скриншоты:
Python Essential [ITVDN] (2016) PCRec Python Essential [ITVDN] (2016) PCRec Python Essential [ITVDN] (2016) PCRec Python Essential [ITVDN] (2016) PCRec

Загрузил: Baguvix (22 сентября 2021 23:05)
Взяли: 1449 | Размер: 1,85 Gb
Последняя активность: не наблюдалась
Мультитрекер: Раздают: 0 Качают: 0 Скачали: 0
Содержание:
Python Essential - 2016 (261 файл)
Доп. материалы (11 файлов)
001_Введение в ООП (3 файла)
Examples (13 файлов)
file 00-simple-class.py (204 b)
file 01-classes-as-objects.py (1,1 Kb)
file 02-class-attributes.py (1,69 Kb)
file 03-data-attributes.py (988 b)
file 04-methods.py (1,23 Kb)
file 05-__init__.py (897 b)
file 06-methods-outside-a-class.py (407 b)
file 07-static-methods.py (2,13 Kb)
file 08-class-methods.py (2,73 Kb)
file 09-private-members.py (1,43 Kb)
file 10-magic-methods.py (4,19 Kb)
file 11-singleton.py (1,17 Kb)
file 12-password-protected-field.py (1,23 Kb)
file 001_Введение в ООП (Presentation).xps (1,14 Mb)
file 001_Введение в ООП.xps (569,42 Kb)
002_Наследование и полиморфизм (3 файла)
Examples (13 файлов)
file 00-inheritance.py (576 b)
file 01-multiple-inheritance.py (596 b)
file 02-mro.py (408 b)
file 03-mro.py (1,65 Kb)
file 04-explicit-superclass-attributes.py (2,02 Kb)
file 05-super.py (3,59 Kb)
file 06-super-with-multiple-inheritance.py (902 b)
file 07-complex-hierarchy-mro.py (1,94 Kb)
file 08-isinstance.py (823 b)
file 09-issubclass.py (635 b)
file 10-polymorphism.py (291 b)
file 11-polymorphism.py (1,02 Kb)
file 12-duck-typing.py (1,85 Kb)
file 002_Наследование и полиморфизм (Presentation).xps (1,11 Mb)
file 002_Наследование и полиморфизм.xps (611,93 Kb)
003_Исключения (3 файла)
Examples (21 файл)
file 00-runtime_error.py (11 b)
file 01-raise.py (17 b)
file 02-raise.py (40 b)
file 03-try_except.py (88 b)
file 04-try_except.py (169 b)
file 05-incorrect_except_order.py (169 b)
file 06-multiple_exceptions_in_single_clause.py (510 b)
file 07-default_except_clause.py (76 b)
file 08-unhandled_exception.py (86 b)
file 09-unhandled_exception_in_inner_try.py (165 b)
file 10-exception_in_destructor.py (182 b)
file 11-raise_in_except.py (202 b)
file 12-raise_another_exception_in_except.py (86 b)
file 13-raise_from.py (133 b)
file 14-raise_from_None.py (132 b)
file 15-else.py (503 b)
file 16-finally.py (323 b)
file 17-try-finally.py (74 b)
file 18-warnings.py (829 b)
file 19-lbyl.py (1,73 Kb)
file 20-eafp.py (1,75 Kb)
file 003_Исключения (Presentation).xps (1,13 Mb)
file 003_Исключения.xps (657 Kb)
004_Итераторы и генераторы (3 файла)
Examples (12 файлов)
file 00_iterables.py (528 b)
file 01-iterables.py (270 b)
file 02-iterables.py (490 b)
file 03-iterable_with_getitem.py (1,73 Kb)
file 04-list_iterator.py (1,84 Kb)
file 05-iterator.py (4,43 Kb)
file 06-iterable_with_an_iterator.py (4,04 Kb)
file 07-range-generator.py (3,36 Kb)
file 08-fibonacci-sequence.py (1,25 Kb)
file 09-generator-expressions.py (1,03 Kb)
file 10-delegating-to-subgenerator.py (728 b)
file 11-producer-consumer-coroutines.py (2,07 Kb)
file 004_Итераторы и генераторы (Presentation).xps (950,72 Kb)
file 004_Итераторы и генераторы.xps (618,05 Kb)
005_Последовательности (3 файла)
Examples (21 файл)
file 00-sequences.py (1,2 Kb)
file 01-sequences.py (1,25 Kb)
file 02-range.py (1,21 Kb)
file 03-__contains__.py (959 b)
file 04-concatenation.py (194 b)
file 05-n_times_concatenation.py (709 b)
file 06-indexing_and_slicing.py (946 b)
file 07-min_max_sum.py (347 b)
file 08-index.py (651 b)
file 09_count.py (531 b)
file 10-assignment_and_deleting.py (530 b)
file 11-mutable_sequences_methods.py (1,07 Kb)
file 12-mutable_sequences_methods.py (380 b)
file 13-list_comprehension.py (1,05 Kb)
file 14-sort.py (643 b)
file 15-list_shallow_copy_bug.py (2,76 Kb)
file 16-tuples.py (921 b)
file 17-tuple_unpacking.py (972 b)
file 18-zip_enumerate.py (1 Kb)
file 19-unpacking_argument_list.py (1,4 Kb)
file 20-comparing_sequences.py (676 b)
file 005_Последовательности (Presentation).xps (864,11 Kb)
file 005_Последовательности.xps (635,53 Kb)
006_Множества и отображения (3 файла)
Examples (15 файлов)
file 00-sets_creation.py (399 b)
file 01-set_comprehensions.py (390 b)
file 02-set_constructor.py (737 b)
file 03-generic_set_operations.py (1,79 Kb)
file 04-difference_between_methods_and_operations.py (821 b)
file 05-mutable_set_operations.py (719 b)
file 06-set_equality.py (298 b)
file 07-dict_creation.py (1,47 Kb)
file 08-arbitrary_number_of_keyword_args.py (1,24 Kb)
file 09-dict_operations.py (6,14 Kb)
file 10-dict_views.py (2,05 Kb)
file 11-counter.py (1,88 Kb)
file Examples.pyproj (2,88 Kb)
file Examples.sln (820 b)
file Examples.v12.suo (16 Kb)
file 006_Множества и отображения (Presentation).xps (980,05 Kb)
file 006_Множества и отображения.xps (654,98 Kb)
007_Модули (3 файла)
Examples (11 файлов)
00_Module (3 файла)
__pycache__ (1 файл)
file fibonacci.cpython-34.pyc (1,17 Kb)
file 00_Module.pyproj (1,87 Kb)
file fibonacci.py (943 b)
01_ImportingModule (5 файлов)
__pycache__ (1 файл)
file fibonacci.cpython-34.pyc (1,27 Kb)
file 01_ImportingModule.pyproj (2,01 Kb)
file example1.py (537 b)
file example2.py (367 b)
file fibonacci.py (943 b)
02_ImportFromModule (8 файлов)
__pycache__ (1 файл)
file fibonacci.cpython-34.pyc (1,27 Kb)
file 02_ImportFromModule.pyproj (2,26 Kb)
file example1.py (145 b)
file example2.py (191 b)
file example3.py (184 b)
file example4.py (184 b)
file example5.py (392 b)
file fibonacci.py (943 b)
03_ModuleSearchPath (2 файла)
file 03_ModuleSearchPath.pyproj (1,88 Kb)
file main.py (1,21 Kb)
04_Packages (4 файла)
application (6 файлов)
controllers (3 файла)
__pycache__ (3 файла)
file __init__.cpython-34.pyc (239 b)
file home.cpython-34.pyc (760 b)
file home_controller.cpython-34.pyc (553 b)
file __init__.py (18 b)
file home.py (410 b)
models (3 файла)
__pycache__ (2 файла)
file __init__.cpython-34.pyc (237 b)
file article.cpython-34.pyc (495 b)
file __init__.py (21 b)
file article.py (176 b)
views (1 файл)
txt info.txt (18 b)
__pycache__ (2 файла)
file __init__.cpython-34.pyc (245 b)
file tests.cpython-34.pyc (454 b)
file __init__.py (436 b)
file tests.py (251 b)
framework (3 файла)
__pycache__ (2 файла)
file __init__.cpython-34.pyc (227 b)
file models.cpython-34.pyc (620 b)
file __init__.py (20 b)
file models.py (177 b)
file 04_Packages.pyproj (2,96 Kb)
file run.py (186 b)
05_StdlibRandom (2 файла)
file 05_StdlibRandom.pyproj (1,88 Kb)
file example.py (1,86 Kb)
06_StdlibDecimal (2 файла)
file 06_StdlibDecimal.pyproj (1,88 Kb)
file example.py (1,54 Kb)
07_StdlibFractions (2 файла)
file 07_StdlibFractions.pyproj (1,89 Kb)
file example.py (1,01 Kb)
08_StdlibCopy (2 файла)
file 08_StdlibCopy.pyproj (1,88 Kb)
file example.py (1,4 Kb)
09_StdlibDatetime (2 файла)
file 09_StdlibDatetime.pyproj (1,88 Kb)
file example.py (3,74 Kb)
file Examples.sln (3,79 Kb)
file 007_Модули (Presentation).xps (832,81 Kb)
file 007_Модули.xps (564,29 Kb)
008_Ввод и вывод (3 файла)
Examples (15 файлов)
data (3 файла)
txt example05.txt (111 b)
txt example07.txt (13 b)
txt file.txt (390 b)
file 00-read_file.py (828 b)
file 01-filename_construction.py (1,23 Kb)
file 02-write_file.py (687 b)
file 03-with_statement.py (518 b)
file 04-read_module_source.py (447 b)
file 05-open_for_rw.py (1,01 Kb)
file 06-open_for_appending.py (241 b)
file 07-rewrite_file.py (396 b)
file 08-string_io.py (979 b)
file 09-binary_file.py (1,3 Kb)
file 10-json_example.py (484 b)
file 11-pickle_example.py (2,01 Kb)
file Examples.pyproj (3,05 Kb)
file Examples.sln (818 b)
file 008_Ввод и вывод (Presentation).xps (954,66 Kb)
file 008_Ввод и вывод.xps (657,46 Kb)
009_Элементы функционального программирования (3 файла)
Examples (18 файлов)
file 00-functions_as_first_class_objects.py (473 b)
file 01-lambda_expressions.py (224 b)
file 02-closures.py (191 b)
file 03-advanced_closure_example.py (1,96 Kb)
file 04-currying.py (805 b)
file 05-decorator.py (1,1 Kb)
file 06-map.py (153 b)
file 07-filter.py (205 b)
file 08-reduce.py (264 b)
file 09-lru_cache.py (614 b)
file 10-partial.py (263 b)
file 11-combinatorics.py (358 b)
file 12-product.py (190 b)
file 13-chain.py (178 b)
file 14-takewhile_dropwhile.py (358 b)
file 15-operator.py (748 b)
file Examples.pyproj (3,25 Kb)
file Examples.sln (818 b)
file 009_Элементы функционального программирования (Presentation).xps (892,18 Kb)
file 009_Элементы функционального программирования.xps (626,7 Kb)
Home Work (9 файлов)
Lesson 1 (3 файла)
file task1.py (2,03 Kb)
file task2.py (2,37 Kb)
file task3.py (674 b)
Lesson 2 (3 файла)
file task1.py (816 b)
file task2.py (1,77 Kb)
file task3.py (383 b)
Lesson 3 (3 файла)
__pycache__ (1 файл)
file task3.cpython-34.pyc (3,4 Kb)
file task2.py (1,4 Kb)
file task3.py (3,05 Kb)
Lesson 4 (3 файла)
file task1.py (667 b)
file task2.py (443 b)
file task3.py (5,6 Kb)
Lesson 5 (2 файла)
file task1.py (295 b)
file task3.py (1,67 Kb)
Lesson 6 (6 файлов)
templates (1 файл)
file task2_for_advaced_learners.html (919 b)
file Lesson 6.pyproj (2,23 Kb)
file Lesson 6.sln (818 b)
file task1.py (393 b)
file task2.py (2,01 Kb)
file task2_for_advanced_learners.py (3,39 Kb)
Lesson 7 (2 файла)
Task1 (6 файлов)
templates (1 файл)
file add_link.html (919 b)
__pycache__ (1 файл)
file links_db.cpython-34.pyc (2,42 Kb)
file Task1.pyproj (2,17 Kb)
file cli_main.py (1,34 Kb)
file links_db.py (1,99 Kb)
file web_server.py (1,51 Kb)
file Lesson 7.sln (818 b)
Lesson 8 (4 файла)
Task1 (6 файлов)
__pycache__ (1 файл)
file config.cpython-34.pyc (338 b)
file Task1.pyproj (2,06 Kb)
file config.py (163 b)
txt data.txt (197,88 Kb)
file reader.py (360 b)
file writer.py (435 b)
Task2 (6 файлов)
__pycache__ (1 файл)
file config.cpython-34.pyc (338 b)
file Task2.pyproj (1,93 Kb)
file config.py (163 b)
file data.bin (117,19 Kb)
file reader.py (442 b)
file writer.py (452 b)
Task3 (7 файлов)
database (3 файла)
file links_db.bak (31 b)
file links_db.dat (539 b)
file links_db.dir (31 b)
templates (1 файл)
file add_link.html (919 b)
__pycache__ (1 файл)
file links_db.cpython-34.pyc (2,34 Kb)
file Task3.pyproj (1,94 Kb)
file cli_main.py (1,34 Kb)
file links_db.py (1,85 Kb)
file web_server.py (1,51 Kb)
file Lesson 8.sln (1,39 Kb)
Lesson 9 (4 файла)
file Lesson 9.pyproj (1,99 Kb)
file Lesson 9.sln (818 b)
file task2.py (265 b)
file task3.py (361 b)
file Описание курса.xps (297,27 Kb)
txt README.txt (3,2 Kb)
file Урок 1. Введение в ООП Python.mp4 (211,35 Mb)
file Урок 2. Наследование, полиморфизм в Python.mp4 (254,62 Mb)
file Урок 3. Исключения в Python.mp4 (206,74 Mb)
file Урок 4. Итераторы и генераторы в Python.mp4 (238,36 Mb)
file Урок 5. Последовательности в Python.mp4 (202,35 Mb)
file Урок 6. Множества и отображения в Python.mp4 (223,81 Mb)
file Урок 7. Модули в Python.mp4 (217,37 Mb)
file Урок 8. Ввод и вывод в Python.mp4 (210,76 Mb)
file Урок 9. Элементы функционального программирования в Python.mp4 (111,22 Mb)

Категория: Компьютеры, обуч.видео / Программирование

Поделиться публикацией:
Уважаемый посетитель, Вы зашли на сайт как незарегистрированный пользователь.
Мы рекомендуем Вам зарегистрироваться либо войти на сайт под своим именем.

Добавление комментария

Имя:*
E-Mail:
Комментарий:
Вопрос:
Десять + 5 и минуснём 3 = ?
Ответ:*