62 тысяч подписчиков
269 видео
Keep Poetry Virtual Environment in project folder
Let’s pixelate images with Python and Jupyter notebook
Let’s create our first Jupyter notebook together! Introduction.
Don't switch on types. Adhere to the open-closed principle with polymorphism
Solve coupling with dependency injection in Python
Hide those nasty libraries behind an interface in Python
Building self-driving cars in Python from scratch
Why I lied when I said that Python does not have a compiler
Mahjong Solitaire in the Windows Store
Does Python have a Type System?
Install Python, Visual Studio Code and execute "Hello World!" on Windows in 2024
Install Python, Visual Studio Code and execute "Hello World!" on macOS in 2024
Python GUI with TKINTER
Use print to present numbers and text in Python
Reshape ByteArray and other flat lists with itertools.batched in Python
MIXINS in Python explained with an example
Generics at runtime in Python 3.12. Type hints are borderline magic!
How to run FLAKE8 from the COMMAND LINE
Negative Indexing lists in Python to prevent index out of range
object is not subscriptable. Why it happened and how to fix it.
Getting started with Python Unit Tests and TDD to structure your code better
Why Context managers are so great and how to create one yourself!
SQLAlchemy 2.0 Introduction - Create, Insert, Select and Relationships
What does OBJECT EQUALITY in Python mean?
Linear regression: free chapter from the course 'Building a neural network from scratch with Python'
Map and Filter lists with List Comprehensions in Python
TypeError: can only concatenate str (not "int") to str. The solution
How to write ASSERT statements that IMPROVES the quality of your Python code
4-2 Master page - Python Django beginners course
Lambda Expressions to create Anonymous Functions in Python
Python Context manager.
Get random value from list - Python Exercises for beginners
14. January 2024
UnboundLocalError: cannot access local variable 'x' where it is not associated with a value
Why and when to use dictionaries in Python?
Resize and adjust!
AttributeError: partially initialized module has no attribute (most likely due to a circular import)
Accessing list elements - Python Exercise for beginners
How Self in Python Actually Works
int object is not subscriptable in Python
1-3 Routing - Python Django beginners course
Get rid of unused Python imports from the command line with Flake8!
Scale down app assets with Python and Pillow (PIL)
1 Pyglet window and circles - Create the solar system in Python with Pyglet
Using variables to store values and use them at a later time in Python.
Create 🤖 autonomous 🚙 cars in Python from scratch.
.endswith - Check for more than one condition in Python
Is Python a DYNAMICALLY typed or STRONGLY typed language?
Fixing Animation Jitters in Pyglet: Custom Game Loop Explained
Create while loops - Python Exercise for beginners
What is OOP and what problems does it solve in Python code?
What is the ABSTRACT FACTORY PATTERN in Python?
Fun with math and text in Python
Is Python really TOO SLOW?
Solve KNAPSACK PROBLEM with GENETIC ALGORITHM in Python
Every Python developer needs to learn LIST SLICING
Difference between function and method in Python. Is it just self?
How to read and write JSON FILES in Python
Unary, Binary and Ternary explained with examples in Python
Composition, Aggregation and Association. UML Class diagram relationships
== or is? Object EQUALITY and IDENTITY in Python