С запуском новейшей версии CodeMonkey Курс Python , Banana Tales, it’s the perfect time for a Python deep dive so you know all about the popular language before teaching it to your students.
Что такое Python?
Почему Python так популярен?

Какие концепции кодирования я должен знать?
Переменные: These containers store values. Variables can be changed throughout the program. The value in one variable can be copied and stored in another.
Данные: В Python данные могут включать числа, строки (фрагменты текста) или логические значения (True или False).
Вход и выход: Input and output make up the flow of a program. Input refers to data flowing into the computer such as typed text, files, or mouse clicks. Output refers to data coming out of the computer such as visual, auditory, or tactile information.

Логические операторы: ‘and’ is a command that will be true if both of the operands (x and y) are true. ‘or’ is true if either of the operands is true (x or y).
Класс: Classes are essentially a template to create your objects. In a class, we will define the object’s properties and methods.
Условные : Conditionals are the decision-makers in the program. You can add code that will run only in certain situations. A conditional statement returns only True or False.
Циклы : Loops are a great way to write repeating code with efficiency. The ‘for’ loop is a simple loop used to iterate or repeat, over a sequence. A ‘while’ loop continues as long as its condition is met.
Список : A list is a structure in Python that keep items in an ordered sequence of items. It is one of the most used data types in Python and is very flexible or mutable, meaning it can easily be changed.
Нить : A string is a sequence of characters surrounded by quotation marks.
Функция : A function is a piece of code that performs a specific task. When a function is “called,” Python retrieves the code for that function and then runs it. After the function is finished, the program runs the next command after that line of code.
Библиотеки : In Python, libraries contain codes that were written in previous programs. You can re-use this code in your program for faster development. Python comes with a Standard Library but you can import modules, or sections of a library, to your code to make it more powerful (not covered in Banana Tales).


