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
584 results
Bora aprender um pouco sobre dataclasses e sobre obsessão por primitivos? ------------------- O canal é mantido por uma iniciativa ...
16,458 views
Streamed 5 years ago
What's the trick to using dataclasses in Python? Dataclasses simplify class creation with less boilerplate code. They ...
448 views
1 year ago
How can dataclasses automatically generate __init__? When you create a class, you usually write an __init__ method.
485 views
O canal é mantido por uma iniciativa de financiamento coletivo: https://apoia.se/livedepython Vamos entender como as ...
3,875 views
7 years ago
What's the advantage of dataclasses.asdict for object serialization? dataclasses.asdict automatically converts objects to ...
427 views
Why use field(init=False) in Python dataclasses? The init=False option allows you to skip certain attributes during initialization.
74 views
What's the best approach to validate data classes? Validation is key to ensuring data integrity in classes. But many ...
567 views
O canal é mantido por uma iniciativa de financiamento coletivo: https://apoia.se/livedepython Entendendo um pouco do que se ...
1,330 views
Why use dataclasses for cleaner class definitions? Dataclasses help reduce boilerplate code in your classes. But many ...
438 views
What's the Best Approach to Validate Data Classes in Python? Validating data classes is essential for clean code. But many ...
927 views
Why use dataclasses for clean Python code? dataclasses help you define clean, structured data models. They remove ...
24 views
Data Classes in Python: Why They're Great + Examples Using attrs and dataclasses - Tal Einat - PyCon Israel 2019 ...
7,794 views
6 years ago
Why use frozen dataclasses in Python? Frozen dataclasses are perfect for creating unchangeable data structures. They help ...
429 views
With dataclass, you can create simple classes quickly and easily. Special methods like __init__, __repr__, and __eq__, are ...
147 views
How do dataclasses handle mutable defaults? Mutable defaults in Python dataclasses are tricky. A mutable default (like a ...
420 views
Why use dataclasses.asdict for serialization? dataclasses.asdict simplifies turning objects into dictionaries. It converts nested ...
52 views
Lesson 05 - In this video, you will learn how to use data classes, which are a new and convenient feature of Python that simplifies ...
170 views
2 years ago
What's the Purpose of dataclasses.replace()? 🎛️ The purpose of dataclasses.replace() is to create a new instance with some ...
37 views
Data classes in Kotlin are used to create classes whose main purpose is to store data, providing us with very interesting ...
15,437 views
4 years ago
Available starting Python 3.7, the dataclasses (introduced in PEP 557) are finally here. Amazingly simple solution for data with ...
1,026 views