A Simple & Effective Way To Improve Python Class Performance

  Рет қаралды 98,706

ArjanCodes

ArjanCodes

Күн бұрын

There's a very simple way to improve Python performance of your code. And you know what's so nice about this performance improvement? It also nudges you to use good Python software design practices - it's a win-win!
The code I worked on in this episode is available here: github.com/ArjanCodes/2022-slots.
💡 Get my FREE 7-step guide to help you consistently design great software: arjancodes.com/designguide.
💻 ArjanCodes Blog: www.arjancodes.com/blog
🎓 Courses:
The Software Designer Mindset: www.arjancodes.com/mindset
The Software Designer Mindset Team Packages: www.arjancodes.com/sas
The Software Architect Mindset: Pre-register now! www.arjancodes.com/architect
Next Level Python: Become a Python Expert: www.arjancodes.com/next-level...
The 30-Day Design Challenge: www.arjancodes.com/30ddc
🛒 GEAR & RECOMMENDED BOOKS: kit.co/arjancodes.
🎓 Sign up to Brilliant now and get 20% off the annual subscription: brilliant.sjv.io/arjancodes.
👍 If you enjoyed this content, give this video a like. If you want to watch more of my upcoming videos, consider subscribing to my channel!
💬 Discord: discord.arjan.codes
🐦Twitter: / arjancodes
🌍LinkedIn: / arjancodes
🕵Facebook: / arjancodes
👀 Code reviewers:
- Yoriz
- Ryan Laursen
- Sybren A. Stüvel
- Dale Hagglund
🎥 Video edited by Mark Bacskai: / bacskaimark
🔖 Chapters:
0:00 Intro
0:50 How classes work in Python
2:00 Descriptors
2:46 Basic class example with the dict dunder method
3:53 Using slots
5:02 Slots performance test
6:07 Using slots with dataclasses
7:19 Slots performance test #2 (with dataclasses)
8:00 Why are slots not used by default?
8:39 Slots limitation: mixins and multiple inheritance
10:23 Slots limitation: dynamic attributes
11:25 Final thoughts
#arjancodes #softwaredesign #python
DISCLAIMER - The links in this description might be affiliate links. If you purchase a product or service through one of those links, I may receive a small commission. There is no additional charge to you. Thanks for supporting my channel so I can continue to provide you with free content each week!

Пікірлер: 205
@ArjanCodes
@ArjanCodes 7 ай бұрын
💡 Get my FREE 7-step guide to help you consistently design great software: arjancodes.com/designguide.
@cychoboy
@cychoboy 2 жыл бұрын
Slots can also help you avoid certain types of bugs. For instance person.addres = "abc" becomes an error because "address" was misspelled. Vanilla classes will accept this input without any error leaving you to figure out why the address field wasn't changed as intended.
@foji-video
@foji-video 2 жыл бұрын
that I think is actually the main advantage when building serious applications
@lawrencedoliveiro9104
@lawrencedoliveiro9104 2 жыл бұрын
If you have read/write properties on a class, specifying slots is a very good idea.
@SkyOceanNet
@SkyOceanNet Жыл бұрын
I actually had that error inside my code for such a long time undiscovered. Recently I found it while reforming the code. Now I'm using slots and it can prevent that kind of mistakes. Thanks to Arjan and Edmunds!
@Mr1995Musicman
@Mr1995Musicman 2 жыл бұрын
This is a great feature. Dynamic members is like loose typing: it sounds great as a beginner developer, but as a more experienced developer it's more often a headache
@arpitkumar4525
@arpitkumar4525 Ай бұрын
Even as a experienced dev, dynamic attributes and pretty much non existent boilerplate code seriously helps in prototyping or testing out risky features(risky in terms of feasibility). But other than that of course these should be avoided like the plague
@Sam-qn6hl
@Sam-qn6hl 2 жыл бұрын
Amazed that nobody has questioned using the lower bound rather than an average metric, or plotting the distribution of the different runs. It's not clear that a lower minimum translates into general better performance in most cases, especially a "20%" difference. Having said that, this was an interesting video. Might run some of those tests myself.
@isaacwolf2806
@isaacwolf2806 2 жыл бұрын
Same thing I was thinking! Typically I like to see min, mean, and max. And if I'm trying to convince a coworker my way is better then I just take the best one. 😁
@fjolublar
@fjolublar 2 жыл бұрын
the lower minimum is the most accurate measurement to take
@rafarios50
@rafarios50 2 жыл бұрын
@@fjolublar why is it the most accurate?
@artyomvancyan2000
@artyomvancyan2000 2 жыл бұрын
It is nice to see new videos about python but it's coming unactual more as there are a bunch of video curses about python. I very like your videos about project architecture and the unique code examples that you were using. I would really like to see in your channel videos about UML diagrams, project file structure, documenting packages and modules, design patterns that you haven't talked about them yet, etc. Thanks for your job.
@PeterSeres
@PeterSeres 2 жыл бұрын
I second the opinion that the most interesting videos are that teach us how to reduce coupling in the code by using design patterns and how to make python projects that are scalable.
@hanabimock5193
@hanabimock5193 2 жыл бұрын
Totally agree on that. Also if performance is a problem, just avoid python.
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thanks & no worries - there will definitely be more of those videos in the future.
@jacksonarnold27
@jacksonarnold27 Жыл бұрын
Yes!! Project structure, program flow design, design patterns, etc would be great!! Same with UML stuff, I’d love some in depth videos on any of these
@chaddrobertson5805
@chaddrobertson5805 2 жыл бұрын
I was recently told about slots on an SO question that I'd answered, and was quite confused by the concept until now. This was a fantastic explanation - thank you! A big +1 for touching on inheritance (was my largest concern as I was watching).
@henrikholland1730
@henrikholland1730 2 жыл бұрын
Great video as always. Love the new studio set up.
@_.gray._
@_.gray._ 2 жыл бұрын
Loving the new setup! This explains slots really well, and I might just remember to use them next time I write a class haha.
@willemvdk4886
@willemvdk4886 2 жыл бұрын
Congrats on the new studio/office, Arjan! Looking good. Good to see the contents don't suffer the even better look. Still very informative! Love it. Kappertje gepakt trouwens?
@q2kq885
@q2kq885 2 жыл бұрын
Dataclass is truly a powerful structure in python. I'm really looking forward to learning more tips and tricks to make the python code faster. This tutorial is helpful. Thanks a lot!
@EngHassanIbraheem1998
@EngHassanIbraheem1998 2 жыл бұрын
You have a fantastic skill in choosing topics. Keep it up.
@CornishMiner
@CornishMiner 2 жыл бұрын
I'm liking the new setup Arjan. Super clear video and great sound.
@steshinanton
@steshinanton 2 жыл бұрын
The videos are amazing! I like the way you explain things. It is easy and fun to follow. I always find something useful even if I know the topic and recommend your videos to my colleagues because they are so informative. The way you present inspires me when I do my presentations. The new setup is very nice!
@casperschutte2516
@casperschutte2516 2 жыл бұрын
Thanks for the videos. They are always super interesting and very practical
@fuadpalchayev7269
@fuadpalchayev7269 2 жыл бұрын
Thank you! Very informative👍
@malteplath
@malteplath 2 жыл бұрын
I can see that you are proud of your new studio/office - and you should be! One aspect of inheritance with slots that you didn't mention, and that I am unsure about: how do you add new attributes in a class that inherits from a class with slots? Do you have to declare __slots__ again in the subclass?
@sasha297603ha
@sasha297603ha 2 жыл бұрын
Great new studio and very interesting topic. Well done
@sami3592
@sami3592 2 жыл бұрын
Nice video. I also like your new setup. Your explanation of the topic always best. Thanks man.
@zacharyAbresch
@zacharyAbresch 2 жыл бұрын
Looking stellar mate, sharp looks to match yer words!
@obsidiansiriusblackheart
@obsidiansiriusblackheart 2 жыл бұрын
This is such a fantastic video and the fact that it's completely free is astounding!
@flightmansam
@flightmansam 2 жыл бұрын
Fantastic video. I’m gonna use slots for sure! Also yes, I love the new look. Enjoy your week!
@Vdherrlichkeit
@Vdherrlichkeit 2 жыл бұрын
Again. Great content Arjan. Highly appreciated
@MaksimKupfer
@MaksimKupfer 2 жыл бұрын
Really insightful my friend, and great pace as well! Looking forward to following your content.
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thank you Maxim, glad you liked the content!
@nsontung
@nsontung Жыл бұрын
Thank you so much, Arjan, great lesson. It improved my code performance a lot.
@ArjanCodes
@ArjanCodes Жыл бұрын
Glad you liked it!
@Swissfonk
@Swissfonk 2 жыл бұрын
Love your new Studio.
@ajflorido
@ajflorido 2 жыл бұрын
Cool video, a very good explanation indeed. And a really cool recording setup :D
@jpconstantineau
@jpconstantineau 2 жыл бұрын
Great video! I wonder if micropython and circuitpython support slots at all. Python on microcontrollers can use all the performance help and this is something most people wouldn't even know about.
@anhnguyenuc6543
@anhnguyenuc6543 2 жыл бұрын
Thanks for your video. That's really what I needed
@davidlinesq
@davidlinesq 2 жыл бұрын
Love the new recording setup! Thanks for the content and hope you get to 100k subscribers soon.
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thanks David!
@TechieGuy82
@TechieGuy82 Жыл бұрын
Superb as always. Thumbs up
@jakob1379
@jakob1379 2 жыл бұрын
Nice video! A great way to better show the value of variables is with 'from rich import print'. It automatically highlights types and emphasizes structure.
@wowzers94
@wowzers94 2 жыл бұрын
I dig the new set! And thanks as always for the python tips!
@dhruvakashyap
@dhruvakashyap 2 жыл бұрын
Amazing new setup! Great video as always!
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thank you!
@mahmudulhassan9043
@mahmudulhassan9043 2 жыл бұрын
Thank you very much . i love all of your tutorial . it helps me lot to improve my skill .
@ivolol
@ivolol 2 жыл бұрын
I think you could add a translucent rectangle code graphic inset under the shelf light or something, on the left at 1:00 that could help show the code structure of the very things you're talking about, would work really well
@heljhumenad
@heljhumenad 2 жыл бұрын
This is so much informative especially on perf of py classes
@PedigreeGuitars
@PedigreeGuitars 2 жыл бұрын
Great video. Always learning with you. The new setup look great!!
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thank you Pedro!
@jonathanheadley2729
@jonathanheadley2729 2 жыл бұрын
the setups are really nice! excellent work.
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thank you Jonathan!
@Michael201078
@Michael201078 Жыл бұрын
Slots - very useful think. Thank you for the explanation.
@pthube
@pthube 2 жыл бұрын
Thanks for sharing this cool feature
@jakesurrett3518
@jakesurrett3518 2 жыл бұрын
Sweet new set! Just a little feedback: I would love to see a little bit of graphics/illustrations/diagrams sprinkled in the explain-to-camera sections. When there is a visual complement to the topic/explanation at hand I just can't help but feel more engaged in the discussion. Fireship on KZbin has mastered this technique in place of appearing on camera at all (which I'm certainly not suggesting). SciShow is another excellent example of this technique in action. I suppose news broadcasts had this figured out from the start. Anyhow, food for thought at least and thanks for another great python video.
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thanks for the suggestion Jake, I agree that would be helpful!
@alilee4505
@alilee4505 2 жыл бұрын
Hey Arjan, congrats to your new setup! Looking forward to achieving 100k subs 👍
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thank you Ali!
@PawelOlas
@PawelOlas 2 жыл бұрын
the new backgrounds and cameras you use are very nice. pro!
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thanks Pawel!
@ZeZa1515
@ZeZa1515 2 жыл бұрын
Really liking the new setups! Your face in the coding setup had a lot of shadows on it though, so it wasn't very clear
@cryptosimon9529
@cryptosimon9529 2 жыл бұрын
great setup!
@unusedTV
@unusedTV 2 жыл бұрын
Audio has a bit more echo than in the past, in the first two setups. Coding setup is fine.
@niksen3300
@niksen3300 2 жыл бұрын
Hey Arjan! I have been watching your videos and i have a question that i could not find a clear answer to. Is there a reason to NOT use dataclasses? It really seems to be the cleaner approach to managing and writing your classes but are there reasons to pick normal classes over them? Great content by the way! Loving your channel.
@holographicsol2747
@holographicsol2747 Жыл бұрын
thank you that just helped a lot as i remembered watching this a while ago and came back to refresh my mem!
@ArjanCodes
@ArjanCodes Жыл бұрын
Glad to hear you found it helpful!
@holographicsol2747
@holographicsol2747 Жыл бұрын
@@ArjanCodes awesome
@MagnusAnand
@MagnusAnand 2 жыл бұрын
Fantastic video!
@bryangalindo
@bryangalindo 2 жыл бұрын
Nice setups!! The changing light in the first setup was a little distracting, but the other setups were perfect. Also, thanks for sharing how slots work, its limitations, and providing a real-life example of a tool using slots. Very informative!
@dedekind1982
@dedekind1982 2 жыл бұрын
Thanks! Find ways to keep delivering value like this. Thank you
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thank you, will do!
@BartKevelham
@BartKevelham 2 жыл бұрын
Awesome new setup Arjan! If I'm very nitpicky (but that's not a thing I would ever be) then I'd say the programming view could use a bit of fill light for the right side of the face. But quite an awesome step up already. And besides that, another excellent video. Keep it up!
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thanks Bart! I agree & it’s already fixed for the next batch 😊.
@demasjaring5435
@demasjaring5435 2 жыл бұрын
Awesome camera quality 👌
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thank you!
@lungenbrotchen
@lungenbrotchen 2 жыл бұрын
Thank you for your videos. I learned a lot from them and I also like the entertainment factor of your videos.
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thank you so much - glad to hear the videos are helpful to you!
@kenhaley4
@kenhaley4 2 жыл бұрын
Very nice...as usual. It seems like another advantage of using slots would be to catch spelling errors in your classes' attribute names. For example, without slots, the statement myPerson.namee = "Joe" would work fine, but myPerson.name would not be affected. But using slots, the statement would raise an error: 'Person' object has no attribute 'namee' which would let you find and fix the spelling error much sooner.
@python_byte
@python_byte 2 жыл бұрын
Awesome, amazing way to create a well readable and secure code
@theherk
@theherk 2 жыл бұрын
Dang, That set looks superb.
@christianforster3408
@christianforster3408 2 жыл бұрын
Hi Arjan, love your videos! Just one little note. Wouldn't it be a better measure to use the average performance, than the minimal one? At least I'd be more interested in the average difference in performance ;) Cheers!
@valenciawalker6498
@valenciawalker6498 Жыл бұрын
Thank you
@dqalombardi
@dqalombardi 2 жыл бұрын
I felt so certain that this was just going to be clickbait but honestly it just makes so much sense and I can't believe I didn't know about this before now.
@gshan994
@gshan994 2 жыл бұрын
I like dat you are trying to be like other youtubers wid d lights in BG n all. But i subscribed your channel solely for the knowledge u share. Yes, the setup is good, but honestly I loved your setup with a straight up facing camera.
@jimboppin2461
@jimboppin2461 2 жыл бұрын
great vids, just heads up new sound is a little boxy/tinny 👍
@Hubert4515
@Hubert4515 2 жыл бұрын
we love the new setup! :D
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thanks!
@newoptionz
@newoptionz Жыл бұрын
Thanks @ArjanCodes. Unfortunately I have not yet seen your free 7-step guide? I have signed up at the link you indicate and even purchased some of your courses by I haven't found this elusive guide, lol. Please help.
@ardaakdere
@ardaakdere 2 жыл бұрын
Really cool and energetic also!
@vlntsolo
@vlntsolo Жыл бұрын
Thanks!
@ArjanCodes
@ArjanCodes Жыл бұрын
Thank you Valentyn, glad you liked it!
@jonathan3488
@jonathan3488 2 жыл бұрын
Hi, great video. Does this work the same for private and protected attributes?
@SarcTiann
@SarcTiann 9 ай бұрын
excellent explanation
@ArjanCodes
@ArjanCodes 9 ай бұрын
Glad it was helpful!
@jimmyf.x.9526
@jimmyf.x.9526 Жыл бұрын
So amazing I want to use the f word! Fantastic!!!
@enigq
@enigq 2 жыл бұрын
May I just say that I love the graph monster in the background?
@Rodrigo-rq1dx
@Rodrigo-rq1dx 2 жыл бұрын
The sofa set (0:54) has a lot of potential for you to add animations to explain what you're talking about. Like sketches/code snippets that illustrate.
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Good suggestion! I definitely want to explore animations to improve the clarity of the videos.
@PracticalPillow
@PracticalPillow 2 жыл бұрын
Honestly, this is the first time I see slots, but I have a question. Does performance grow for get, set and delete evenly or some of them has a bigger contribution? Thanks you for the video!
@Rebeljah
@Rebeljah 2 жыл бұрын
I like the new set!
@Claxiux
@Claxiux 2 жыл бұрын
Chief, that lights thing on your left is a bit distracting (setup 1). Thanks for the video!
@ThomasConrad
@ThomasConrad 2 жыл бұрын
Very informative. I honestly didn't know this. Free performance increases are the best performance increases.
@spell105
@spell105 6 ай бұрын
There is no such thing as a free lunch, it's worth knowing about the limitations of slots.
@gheefop
@gheefop 2 жыл бұрын
no hoodie? Arjan I think this strapping professional has taken over your channel 🤣 new sets look great
@saeedgnu
@saeedgnu 6 ай бұрын
In Go, you can "compose" several structs in a bigger struct, and get convinience of multiple inheritance, without inheritance at all. But in Python, sometimes the only way to make your class smaller is to use multiple inheritance. I think in some ways, Go is a better Python than Python (based on the Zen of Python).
@robertbrummayer4908
@robertbrummayer4908 2 жыл бұрын
Hi Arjan, great video! I also like your new setup. However, as also other commented, the audio seems to be worse than before.
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thanks! The audio could indeed be better, still have to tweak the new setup a bit, but we’ll get there.
@castares
@castares 2 жыл бұрын
Good video, thank you for your content. But, shouldn’t you use mean instead of min when calculating performances? Those mins could be outliers
@rajat971
@rajat971 2 жыл бұрын
@arjan - Should we always user dataclasses even if we have a lot of business centric complex methods in the Class or should be only use dataclass for saving data in class and using simple get set methods?
@MrDowntemp0
@MrDowntemp0 Жыл бұрын
Is it possible to use descriptors for validating attributes in a class that uses slots?
@Burbinox
@Burbinox 7 ай бұрын
What about the case when we will have a list object as a slot? Does that make sens?
@callumfleming8662
@callumfleming8662 2 жыл бұрын
Like number: 660 great video, didn't even know slots existed! thank you!
@pedroazambuja132
@pedroazambuja132 2 жыл бұрын
Damn looking good man 🕴
@djangodeveloper07
@djangodeveloper07 2 жыл бұрын
high quality content about python on this Channel. No Doubt in it
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thank you Ahmad, glad you like it!
@ac130kz
@ac130kz 2 жыл бұрын
I think attrs is such an awesome thing, it is faster than dataclasses, has validation, extra features, and the slots are enabled by default!
@nocodenoblunder6672
@nocodenoblunder6672 2 жыл бұрын
What is attrs?
@burnere633
@burnere633 2 жыл бұрын
h4X0r Arjan to corporate Arjan. Also changing lights in the background is a bit distracting.
@StevenMartinGuitar
@StevenMartinGuitar 2 жыл бұрын
The shirt seems a little formal :D but the new recording setup looks dope!
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Haha, yeah I thought let’s change things a bit for fun. Next time, back to hoodies & simple shirts 😁
@shamaldesilva9533
@shamaldesilva9533 2 жыл бұрын
Damnnnn that background 🤩👏👏👏
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Glad you like it!
@MarcelSchliesser
@MarcelSchliesser 2 жыл бұрын
Danke!
@ArjanCodes
@ArjanCodes 2 жыл бұрын
Thank you, Marcel!
@janHodle
@janHodle 2 жыл бұрын
Thank you! Your content belongs to the better ones here on KZbin!
@danzobisk2743
@danzobisk2743 2 жыл бұрын
Hello any video about Python Guard clauses please
@kalagecko77
@kalagecko77 9 ай бұрын
Thank you Arjan! I using classes in a raspberry pi 4 to perform face tracking with 2 servo motors. Since I am using python 3.9 with no slots attributes for dataclasses, I am using the classical class definition with slots. Unfortunately I couldn't see any improvements. Without using classes or functions I've got an incredible FPS rate. I've tried to switch to python 3.10 using pyenv and venv. Unfortunately I am facing some dependency problems with a library (libcam) that is installed with apt-get install instead of pip3. So I cannot run the program with python3. 10 to test performance. Maybe you have a good hint here for solving this dependency issue. Thx
@jusce17
@jusce17 2 жыл бұрын
Performance wise, if we use data type when declaring variable (e.g a:int = 10), does it anyhow improve the performance ?
@gshan994
@gshan994 2 жыл бұрын
I mostly use python for aws cdk. And for architectural diagrams i use plant uml diagrams.
@johncongerton7046
@johncongerton7046 7 ай бұрын
The best tutor of all
@ArjanCodes
@ArjanCodes 7 ай бұрын
Thank you for the kind words, John!
@ahmadkhaled4751
@ahmadkhaled4751 2 жыл бұрын
Thank you Arjan for your brilliant content, I'm a fan of your Midlife-crisis looking thumbnails.
@marcioneto3016
@marcioneto3016 2 жыл бұрын
The new setup is looking great! Great video, as usual.
@JoaoSantos-lv4rc
@JoaoSantos-lv4rc 2 жыл бұрын
it is a cool setup. (imo)
@grzegorzryznar5101
@grzegorzryznar5101 2 жыл бұрын
Hello Arjan. Could you tell about different way to implement class which inherits over employee and person? I agree that multiple inheritance may be bugggy, but how to solve that in a clean and efficient way?
@VileVillian
@VileVillian 2 жыл бұрын
Answering as a sr dev here - try thinking in terms of composition instead of inheritance. Inheritance implies an "is a" relationship. A Square "is a" Shape. Composition implies a "has a" relationship. A vehicle "has a" steering wheel, brakes, and headlights. Its very rare that you will find yourself with the need to describe W "is a" X, Y, and Z. Hope this makes sense. There are others who can explain it way better - just search "prefer composition over inheritance" - it is a well-known axiom amongst experienced OO developers. Edit: As a nice side effect to using composition over inheritance, you'll find your unit tests easier to implement because you'll be in a good position to leverage dependency injection and provide mocks for the dependencies rather than having to mock any dependency chains of your parent class(es).
Next-Level Concurrent Programming In Python With Asyncio
19:19
ArjanCodes
Рет қаралды 163 М.
La final estuvo difícil
00:34
Juan De Dios Pantoja
Рет қаралды 29 МЛН
Why You Should Always Help Others ❤️
00:40
Alan Chikin Chow
Рет қаралды 7 МЛН
Sprinting with More and More Money
00:29
MrBeast
Рет қаралды 101 МЛН
Тяжелые будни жены
00:46
К-Media
Рет қаралды 5 МЛН
The Ultimate Guide to Writing Classes in Python
25:39
ArjanCodes
Рет қаралды 104 М.
Python dataclasses will save you HOURS, also featuring attrs
8:50
15 Python Libraries You Should Know About
14:54
ArjanCodes
Рет қаралды 357 М.
PLEASE Use These 5 Python Decorators
20:12
Tech With Tim
Рет қаралды 90 М.
7 Python Code Smells: Olfactory Offenses To Avoid At All Costs
22:10
This Is Why Python Data Classes Are Awesome
22:19
ArjanCodes
Рет қаралды 788 М.
The Ultimate Guide to Writing Functions
24:31
ArjanCodes
Рет қаралды 176 М.
5 Useful Python Decorators (ft. Carberra)
14:34
Indently
Рет қаралды 83 М.
Protocol Or ABC In Python - When to Use Which One?
23:45
ArjanCodes
Рет қаралды 196 М.
5 Good Python Habits
17:35
Indently
Рет қаралды 344 М.
La final estuvo difícil
00:34
Juan De Dios Pantoja
Рет қаралды 29 МЛН