В разделе материалов: 105
Показано материалов: 41-50
Урок
- Видеоурок
- Переменные
- Типы данных
- Комментарии
- Вопросы
- Упражнения
|
Программирование на Python
- Тематическое планирование
- Ссылки на материалы и упражнения к урокам
|
Python. Вывод данных
- Функция print
- Аргументы sep и end
- Экранирующие последовательности
- Переменные
- Вопросы
- Упражнения
|
Python. Object-oriented programming (OOP). Classes
- Terms and definitions
- Creating classes
- Class Methods
- Method __init__
- Questions
- Exercises
- Tasks
11.4.1.1 create classes and instances of classes
11.4.1.2 develop methods for the class
11.4.1.3 use special method __init__ to set default properties |
Python. Lambda function. map(), filter() functions.
- Lambda function
- Benefits of using Lambda expressions
- map()
- filter()
- Questions
- Exercises
- Tasks
11.3.2.1 write code in a programming language using lambda functions
11.3.2.2 determine the result of a lambda function |
Python. Functions. Variable scope.
- Local variables
- Global variables
- Questions
- Exercises
- Tasks
11.3.1.3 define the scope of variables |
Python. Functions
- Definition
- Passing Parameters to Function Arguments
- Setting default values
- Arbitrary Arguments (*args)
- Keyword arguments (**kwargs)
- Questions
- Exercises
- Tasks
11.3.1.1 write code in a programming language using functions
11.3.1.2 assign function parameters
11.3.1.3 define the scope of variables |
Python. Dictionaries
- Definition
- Actions (changing, adding, deleting)
- Dictionary methods
- Ready dictionaries
- Questions
- Exercises
- Tasks
11.2.5.1 create a dictionary
11.2.5.2 search for data in a dictionary for a given key |
Python. f-strings
- Definitions
- Examples
|
Python. Nested lists (2D arrays)
- Definition
- How to create 2D lists filled with zeros?
- How to fill a 2D list with dimensions n*m from the keyboard?
- How to process each element of a matrix?
- How to display all elements in a table?
- Questions
- Exercises
- Tasks
11.2.3.4 create nested lists
11.2.3.5 enter elements of nested lists from the keyboard |