Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
3,780 results
Learn how to design great software in 7 steps: https://arjan.codes/designguide. In this video, I take a deep dive into Python ...
109,311 views
7 months ago
python #coding #programming # Data Class = A special kind of class that's designed mostly for holding data # without writing a lot ...
27,919 views
2 months ago
Learn how to design great software in 7 steps: https://arjan.codes/designguide. Dataclasses are often treated as nothing more ...
32,511 views
2 weeks ago
One thing you may have noticed in Python is that typing dictionaries isn't always straightforward. As dictionaries grow in ...
14,449 views
3 months ago
Tired of always writing the same __init__, __repr__, or __eq__ methods in your Python classes? Dataclasses are there to ...
772 views
My course "Hardcore Web Development" - https://course.to.digital 00:00 In which classes do you write business logic? 00:57 ...
12,908 views
3 weeks ago
Learn how Python dataclass decorator revolutionizes class creation and eliminates boilerplate code in this comprehensive tutorial ...
998 views
4 months ago
Dataclass - это способ гибко управлять нашими классами, который позволяет писать меньше кода Под капотом реализуют ...
2,333 views
In this video, we're going to show you a super simple way to write cleaner, shorter Python classes using the @dataclass decorator ...
437 views
Join my Python Masterclass ~ https://www.zerotoknowing.com/join-now Join my Free Python Webinar ...
2,603 views
8 months ago
Learn how to recursively modify values in a nested dataclass in Python to manage complex data structures effectively.
2 views
10 months ago
Lesson 19 - Dataclass A dataclass in Python (using @dataclass) automatically adds methods like __init__, __repr__, and __eq__ ...
19 views
Discover the challenges and best practices when you want to ensure immutability in Python's frozen dataclasses. Learn how to ...
5 views
Advanced dataclass features for cleaner code Using field(), post_init, and inheritance.
22 views
Learn the proper way to define and use a `dataclass` in another class in Python. This guide breaks down the process into simple ...
1 view
9 months ago
Discover how to inherit attributes from normal classes in Python using `dataclasses` with a thorough explanation and example.
4 views
Are you still writing boilerplate code for your Python classes? It's time to level up! In this video, we explore why every Python ...
9 views
Discover the reasons behind the `read-only` attribute behavior of dataclass fields in Python, and learn how to resolve this issue ...
Understanding Python's @dataclass Decorator - WITH CODE Examples.
6 months ago
Discover effective methods to blend `dataclass` and `enum` in Python for improved code structure and clarity. --- This video is ...
7 views
Learn how to make all fields of a Python `-dataclass` optional and default to `None` without specifying `Optional` for each property.
Discover how to export specific fields from a list of `dataclass` objects to a dictionary seamlessly in Python. --- This video is based ...
3 views
Inheritance post init and computed fields Dataclasses support advanced features for complex data structures.
16 views
Learn how to create a Python dataclass that includes an optional attribute, allowing for greater flexibility in your class design.
Learn how to dynamically remove fields from a dataclass in Python using inheritance without copying each field manually.