With the launch of CodeMonkey’s newest Python course , 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.
What is Python?
Why is Python so popular?

What coding concepts should I know?
Variables: These containers store values. Variables can be changed throughout the program. The value in one variable can be copied and stored in another.
Data: In Python, data can include numbers, strings (pieces of text), or Booleans (True or False).
Input and Output: 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.

Boolean Operators: ‘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).
Class: Classes are essentially a template to create your objects. In a class, we will define the object’s properties and methods.
Conditionals : 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 : 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.
List : 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.
String : A string is a sequence of characters surrounded by quotation marks.
Function : 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.
Libraries : 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).


