Con el lanzamiento del más nuevo de CodeMonkey Curso de 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.
¿Qué es Python?
¿Por qué Python es tan popular?

¿Qué conceptos de codificación debo conocer?
Variables: These containers store values. Variables can be changed throughout the program. The value in one variable can be copied and stored in another.
Datos: En Python, los datos pueden incluir números, cadenas (fragmentos de texto) o booleanos (verdadero o falso).
Entrada y salida: 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.

Operadores booleanos: ‘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).
Clase: Classes are essentially a template to create your objects. In a class, we will define the object’s properties and methods.
Condicionales : 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.
Bucles : 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.
Lista : 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.
Cuerda : A string is a sequence of characters surrounded by quotation marks.
Función : 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.
Bibliotecas : 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).


