11111 подписчиков
38 видео
Python course introduction
Understanding Python tuples | Comparing tuples and lists
Operating with Python lists | Built-in functions and methods
Slicing Python lists | The "[ ]" square brackets operator
Modifying Python lists | Methods "append()" and "insert()"
Create and access LISTS in Python | Using the "[ ]" operator
Learn Python from a University Professor
Computational cost of algorithms
How do EXCEPTIONS propagate in Python? | Managing errors across functions
The TRY-EXCEPT statement in Python | Intercepting and handling errors
What are Python EXCEPTIONS? | Using the ‘raise’ statement
Detection of PALINDROMES | Python recursive function to identify symmetric strings
What is a variable in Python?
The Python “FOR” loop | Iterating through a list of items
What is a RECURSIVE function in Python? | Calculate a factorial operation recursively
Advanced arithmetic operators in Python | True vs floor division, modulo operation, exponentiation
The Python “if” statement | Introduction to conditional execution
Converting data types in Python | From string to integer and vice versa
Writing a simple “Hello word” program in Python 3
Example using Python “if-else” block | An even/odd number detector
The Python “if-else” block | Conditional execution under one condition and its opposite
The Python “WHILE” loop | Iterative execution based on a condition
Reading input from the KEYBOARD in Python
How to use KEYWORD arguments in Python functions
How to define functions in Python | The “def” keyword
The Python “CONTINUE” statement | Skipping iterations in loops
How to declare ARBITRARY arguments in Python functions
Importing modules in Python with the “import” keyword | An example using the “math” module
The Python “if-elif-else” block | Conditional execution under multiple conditions
How to use the Python 3 code editor on Computer Science Camp
The Python “BREAK” statement | Interrupting the execution of a loop
How to RETURN values in Python functions | The “return” statement in fruitful functions
How to declare OPTIONAL function arguments in Python