7 Python Code Smells: Olfactory Offenses To Avoid At All Costs

2024 ж. 12 Мам.
364 165 Рет қаралды

This video shows 7 code smells that point to poor design decisions, as well as how to fix them. I'm pretty sure you're guilty of at least one of these smells (as I was in the past :) ), and knowing these will help you write much cleaner, more robust code.
The code that I worked on in this video is available here: github.com/ArjanCodes/2021-co....
💡 Here's my FREE 7-step guide to help you consistently design great software: arjancodes.com/designguide.
🎓 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.
A few interesting links to articles and books:
Refactoring: Improving the Design of Existing Code (2nd Edition) by Martin Fowler - amzn.to/35N4Clq
- Design Patterns: Elements of Reusable Object-Oriented Software by Erich Gamma, Richard Helm, Ralph Johnson, and John Vlissides: amzn.to/3jllgyH
- Principles of Package Design: Creating Reusable Software Components by Matthias Noback: amzn.to/2NETK3l
- Clean Code: A Handbook of Agile Software Craftsmanship by Robert Martin: amzn.to/3qVZgNs
👍 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!
💬 Join my Discord server here: discord.arjan.codes
🐦Twitter: / arjancodes
🌍LinkedIn: / arjancodes
🕵Facebook: / arjancodes
👀 Channel code reviewer board:
- Ryan Laursen
- Sybren A. Stüvel
🔖 Chapters:
0:00 Intro
1:27 Explaining the example
3:12 Code smell #1: imprecise types
5:52 Code smell #2: duplicate code
7:31 Code smell #3: not using available built-in functions
8:53 Code smell #4: vague identifiers
10:05 Code smell #5: using isinstance to separate behavior
13:40 Code smell #6: using boolean flags to make a method do 2 different things
15:58 Code smell #7: catching and then ignoring exceptions
17:29 Code smell #8 (BONUS): not using custom exceptions
21:30 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!

Пікірлер
  • SOLID design principles help avoiding some of these code smells. Watch this video to cleanse yourself ;) : kzhead.info/sun/o7h7Y5SZj4Vtao0/bejne.html.

    @ArjanCodes@ArjanCodes2 жыл бұрын
    • good points, but most of that is refactoring related. In reality when you need to push it out, the entire code-base can and will get bugged up. Perfectly planned and executed projects exist only in the books and tutorials, mostly because there are no clients on the receiving end, or deployment requirements, or exotic randomness specific to the project. Reality is smelly, dirty and scary, and you, the dev, are up against it on your own. Against your team, which is fighting its own battles(hopefully project related- toxic environments are pretty bad). Against the system architect who doesn't give a shit for your 5K lines of code until it ends requiring interface redesign or comes up as a performance bottleneck during profiling. Against the boss who lives in a timeless fairytale of semi-random deadlines, just as a way to avoid the fiscal nightmare. Against the client who expects everything, requires nothing, but piles demands constantly. You are like Rambo- if you need to to kill 100 enemies with 5 bullets you need to make it work, like now(which would be great, if it was real- you needed to do it yesterday, which means you have to get that time travel stuff sorted out ASAP, from the cell, without the guards seeing you, and not chicken that's from a different movie cheater), you'll figure out the paperwork later. An yes you have to deal with the future you whining that the code you are writing now sucks, but consider that- if your future self likes the code you wrote now, you haven't learned anything while wring it, so probably programming is not your forte- maybe try QA instead On the actual points you make: Code duplication is bad, but messing with already tested and released code is worse. Even if it is such simple fix, you will be surprised how strange a released and tested code behaves once you start 'optimizing' it just before production. Underspecifying variables is bad, but if it passes code-review you are stuck with it as it gets too expensive to fix the mess as it tends to grow. The same is true with variable names, AND NO "REPLACE ALL" IS A BUG IN THE EDITOR. DO NOT USE IT UNLESS SUPERVISED BY A SENIOR SUPERVISED BY A SENIOR SUPERVISED BY A SENIOR... (SUPERVISED BY A SENIOR) Boolean flags are nasty but features on larger projects tend to come out of the blue, so learn to live with the dead weight. Just know that it is a dead weight and not a goto fix. Ignoring exceptions is a mixed bad. In general you should never do it. in reality however there are certain parts of the code that can throw, but are accessed in such fashion that the exception does not need to bubble(threading, communication, certain UIs). Then there are the order of operations problems and asynchronous callbacks(combined, because performance and shit) where you can get pretty crazy outputs, so exceptions are not really something you can rely on to normalize the code flow, but you still need to account for because the interpreter fires them. Adding loggers there is also dangerous(trying to trace a thread that throws and logs the exception can cause the entire machine to freeze), so sometimes you should simply let it go. The trick is to know where you can get away with it, but unfortunately that comes with experience. The best advice there is, if you are not sure, write comments. Make them long, don't be shy to explain yourself, you will find out that while trying to explain the smelly part in the comment you will actually find a way to fix it, and if not you will leave enough information to fix the WTF problem, that inevitably comes during reviews. isInstance(there was one more actually, just can't get the name off the top of my head) is required nuisance. I hate it in general, it should not exist, but because of the way python handles OOP it is a helpful hack. As the development progresses you will find yourself going for it, since redesign of the entire architecture is way too expensive. The other two are a bit more complicated: Using built in python functions is ok, as long as you are sticking to the python ecosystem. Modern projects however tend to stretch the stack, which inevitably will introduce other languages and frameworks. Those come with other people(hopefully) that can handle them. It is a nice fantasy that those will remain separated during the dev-cycle. In reality the teams(or you) will have to adapt parts of the stack that are outside of the particular tech domain to get features running. This is why you want to stick to programming fundamentals as much as possible, Yes if you want to cast a list to a dictionary you will use the zip function(or whatever its name was) and not write one yourself, but iterating an array does not need to be obfuscated just because python allows you to do it. You are not gaining that much performance, the amount of writing time is negligible, but the readability of the code is priceless. Do not forget that an experienced engineer, can start reading python in minutes. The language is not that complicated, so really give the guy(or yourself) a chance to do work on the project and not the code-base. The same is true for most of the modern languages. Please do not go exotic because the language supports some neat convention. Unless it gives you a real boost in performance(in which case adding a comment that points it out is really, like really neat, way better than the language feature itself actually), keep the things simple and straightforward. On the custom exceptions, you have a point, but honestly there is much that can go bad there, so I wouldn't recommend it for such video. Most of the people that watch it are probably lacking enough experience to make the call when and where to use custom exception. The policy for exception handling alone is a pretty deep topic, that is depends on the application, and/or the particular layer that you are in. So yeah, I do agree with the empty exception handlers, but lets leave custom exceptions. An overly-inspired junior being handed a relatively simple task, with the power of a simple language like python can do a lot of crazy shit, if s/he goes on and decides to showcase his/her knowledge of the language fundamentals, while forgetting that it is the programming fundamentals that matter, the language is just a tool that does the job. The latter is something that I would love to see promoted more often. I really need programmers than can solve programs, not translators from natural language to a set of computer languages. Possessing knowledge for the language is indeed important* but most modern languages are so similar from programmer point of view that the extra knowledge you throw in ends up bugging the project in general. *if you are doing C or C++ things are different, there knowing the language is required, but even more you need to know the machine you are building for, not to mention the libraries you are using. If you can cover all three inside out, you might handle the project relatively well, if you are disciplined enough that is

      @timstoev5607@timstoev56072 жыл бұрын
    • Who cares about Python code smells. Whole thing is c**p. Python is not even a computer language - no computer ever has actually executed python program. Instead, program is written as a series of one line jokes that cores laugh at while reading it on their free time at local bar, while laughing maniacally at each one and competing at trying to guess what shit comes in the next line. PC term for this is "interpreted language". On top of that, it comes with its own friggin ecosystem that whole distros are supposed to build araond and adapt to. And users are expect to wonder what little change in next Python microversion has shattered their duct-taped program, without any care about the task they are trying to do. I've yet to see ONE great program, written in Python, that is really worth using. Python was meant to e a duct-tape for in-house use, not as crucial component that one intends to sell.

      @brane2379@brane23792 жыл бұрын
    • Cleanse your :

      @punkisinthedetails1470@punkisinthedetails14702 жыл бұрын
    • @@brane2379 Some people say something because they have something to say. Others say something because they have to say something. Guess which group you're in...

      @dariuszspiewak5624@dariuszspiewak5624 Жыл бұрын
    • the "try execept" thing always bothers me. I understand the idea, but sometime, when you are depending of an other complicated code, that might generate any Exception... well you do not know the kind of exceptions you are supposed to kind, nor if you forgot one exception type. So you execute this code and pray for nothing wrong to happen. And yes this might be the result of a poorly designed code, but you are not always able nor authorized to check/modify this code. Is it realy a good thing when for instance processing a file to have. except IoError (yes but an IOError could occur during the processing, not only during the file reading) Except OsError (the same) except ValueError except KeyError .... ... No, you just want to catach any error. The way you treat each of them is not different. And letting those error propagate at this stage will only create a stupid message error of the user such as "Invalid character at position 98"

      @littleconan7929@littleconan7929 Жыл бұрын
  • Don't store monetary amounts in a float! Rounding errors and money don't mix. You should use a decimal type or integer (with the latter getting divided by 100 for display).

    @andrew_ray@andrew_ray2 жыл бұрын
    • EXACTLY!

      @cerulity32k@cerulity32k2 жыл бұрын
    • if I get really nervous aout it, I append _in_pennies to the name of a integer DB column or variable just incase someone else refuses to pay attention. 😂

      @FasutonemuMyoji@FasutonemuMyoji2 жыл бұрын
    • Doesn’t a decimal, or quadruple, still have rounding errors, but way less significant?

      @cerulity32k@cerulity32k2 жыл бұрын
    • @@cerulity32k A proper decimal type shouldn't have rounding errors since they arise from the conversion between decimal and binary. When you tell a float (or double or quad) to store 0.2, it stores something close to, but not exactly 0.2. Double and quad types will get you closer to 0.2, but still won't be exact because 0.2 cannot be represented in binary using finite digits. If you multiply that by a large number, or add together a bunch of numbers with similar errors, they compound and you get further and further from the right value and you end up buying 1000 widgets at 20 cents a piece for a total of $199.99. This isn't a problem for measured values because the rounding error is swallowed by limitations on precision, but money comes only in exact multiples of $0.01, so monetary values are exact. When you tell a decimal type to store 0.2, it stores exactly 0.2 (or 2 * 10 ^ -1), so when you buy 1000 widgets at 20 cents each, the total cost is correctly $200.00. Decimal types may still be subject to loss of precision (e.g. because your number has more decimal places than fit in an integer or long), but are immune to rounding errors at the cost of being more computationally expensive to use. If you also need to protect against loss of precision also, there are types like Java's BigDecimal, which allows arbitrary precision (subject to memory limitations) in exchange for being even less efficient.

      @andrew_ray@andrew_ray2 жыл бұрын
    • @@andrew_ray thanks for this!

      @seantilson8728@seantilson87282 жыл бұрын
  • First time here. I gotta say: I'm in love with the way you explained why these changes had to be made. They're not just out of "because I say so" great job mate.

    @yeagerdd@yeagerdd2 жыл бұрын
    • Thank you so much, Diego, glad you enjoyed the video.

      @ArjanCodes@ArjanCodes2 жыл бұрын
    • ​@@ArjanCodes while you applied some correct refactoring here and there, you took a simple script and overengineered it by defining garbage enums and completely unnecessary (in this case) custom exceptions. This is also a smelly code, because it actually make the module harder to read. Keep it simple, unless there is a good reason to add your exceptions, or enums, or to use ABCs, etc.

      @k283@k283 Жыл бұрын
  • This man explains stuff so calmly and I love his accent.

    @Corporal-Clegg@Corporal-Clegg2 жыл бұрын
    • Thank you - I've been working on my accent a long time - and give it the right amount of "cheese".

      @ArjanCodes@ArjanCodes2 жыл бұрын
    • @@ArjanCodes are you Dutch?

      @Corporal-Clegg@Corporal-Clegg2 жыл бұрын
    • Yep! As Dutch as they come.

      @ArjanCodes@ArjanCodes2 жыл бұрын
    • @@ArjanCodes Wow, working/living in the Netherlands for 10 years, I would have not guessed that. Learning Python at the moment in my 'free time' and I am amazed by the beauty and potential of it - as demonstrated by you (required to use C# at work ;( ).

      @berndwarnders@berndwarnders2 жыл бұрын
  • 0:00 Intro 1:27 Explaining the example 3:12 Code smell #1: imprecise types 5:52 Code smell #2: duplicate code 7:31 Code smell #3: not using available built-in functions 8:53 Code smell #4: vague identifiers 10:05 Code smell #5: using isinstance to separate behavior 13:40 Code smell #6: using boolean flags to make a method do 2 different things 15:58 Code smell #7: catching and then ignoring exceptions 17:29 Code smell #8 (BONUS): not using custom exceptions 21:30 Final thoughts

    @yt-sh@yt-sh2 жыл бұрын
  • SMH I finally learned what enum does. This quickly turned from a code fragrance video into a level up the code video for me.

    @ighsight@ighsight2 жыл бұрын
    • Glad it was helpful!

      @ArjanCodes@ArjanCodes2 жыл бұрын
    • Same. Mind blown

      @CharleswoodSpudzyofficial@CharleswoodSpudzyofficial2 жыл бұрын
    • And I learned that Python has enums. Didn’t know that somehow.

      @U20E0@U20E02 жыл бұрын
  • thanks for doing refactor walk-throughs of implementing concepts, it really does a nice job of reinforcing how it should be after refactor, a lot of tuts just stop at "do this and it will be better" and you going the extra mile is really nice!

    @proud22beme@proud22beme2 жыл бұрын
    • Thank you - glad you liked it!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Definitely make this a series! Watching the code be cleaned is wonderful

    @joemarriage3002@joemarriage30022 жыл бұрын
  • I absolutely love your videos, randomly found your channel and it is exactly what I was looking for. Exellent content.

    @egorsencha2428@egorsencha24282 жыл бұрын
  • I was putting away a large refactoring job for days, but after getting this in my feed I got more confidence in myself seeing these incredibly well explained refactor examples. Managed to finish it in a few hours. Really enjoying your content.

    @thatone5350@thatone53502 жыл бұрын
    • Thanks, glad you like the content!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • The custom Exceptions bit was actually really helpful for me! Thank you Arjan!

    @Sciencedoneright@Sciencedoneright2 жыл бұрын
    • Glad to hear that!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Honestly, the best python KZhead channel out there for non-beginners! Incredible! Thank you for everything, I'm learning so much from you

    @ShanilPanara@ShanilPanara2 жыл бұрын
    • I feel like if I'm not doing everything in these videos I'm still a beginner 😭

      @amir3515@amir35152 жыл бұрын
  • This video felt like a senior developer 1 on 1 reviewing my code, it was really helpful, thank you :)

    @SzaboB33@SzaboB332 жыл бұрын
  • There are countless amazing resources to learn python, but as far as going from there and bettering existing skills I don't think any other resource online has given me more practical tips (in one place, with place, easy to digest content) than this channel. Thanks Arjan!

    @unsuspicious_youtuber@unsuspicious_youtuber Жыл бұрын
    • Glad to hear you’re finding the content helpful, Michael!

      @ArjanCodes@ArjanCodes Жыл бұрын
  • love the code smell series! hope there will be more in the future!

    @lux-co3nl@lux-co3nl2 жыл бұрын
  • I found you from reddit post and I'm glad I did, this video was superb. Amazing work!

    @sebastiansoto3595@sebastiansoto35952 жыл бұрын
    • Same

      @namanguntiwar1012@namanguntiwar10122 жыл бұрын
    • Thank you, glad you liked the video!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Thanks for the nice explanations, seeing how these principles get applied onto code examples is a lot more informative and easier to remember than reading about them. Regarding the bonus smell, I'd suggest more emphasis on the usage (you did mention it in the video), when proposing custom exceptions. It's actually good to reuse built-in types as much as possible. Here, custom exceptions were needed, because of the metadata and that there's code somewhere else handling that error.

    @MariusBelea@MariusBelea2 жыл бұрын
    • I've read the comments to see if someone wrote something about the custom exceptions part and its utility. In my opinion (and I am not an expert), the ValueError exception associated with its string description is sufficient and making a custom exception seems a bit overkill.

      @EW-mb1ih@EW-mb1ih Жыл бұрын
  • Everyone likes their own smell.

    @manonthedollar@manonthedollar2 жыл бұрын
    • And code smell is just code flavour.

      @SenselessUsername@SenselessUsername2 жыл бұрын
    • George Carlin DID ask "You ever notice how your own farts ... smell okay?" - well, maybe not the kind of smell we're talking about, haha.

      @gondoravalon7540@gondoravalon75402 жыл бұрын
  • Wonderful video. As a person who only ever writes python code when I'm trying to bodge something together on a raspberry pi its really nice to see how it should be done.

    @Beanpapac15@Beanpapac152 жыл бұрын
  • Great job !! This a incredible reference for interns or freshers. Thanks for all the efforts.

    @shreedaghatpande1878@shreedaghatpande18782 жыл бұрын
  • Great video as always! I think another thing to mention is maybe to think through what responsibilites each class has and/or should have, for example moving the pay() method to the Employee class as you did in the video, maybe move that responsibility back to the Company class with maybe an abstract payment handler that handles it, as it seems kind of weird for an Employee to have the responsibility to pay themselves. Nevertheless, thumbs up and great work!

    @quantumjolt8663@quantumjolt86632 жыл бұрын
    • Absolutely and good point. Actually, in my composition vs inheritance video, I’m doing exactly that, also with an employee example: kzhead.info/sun/Y9GcgJySp4eIZnA/bejne.html.

      @ArjanCodes@ArjanCodes2 жыл бұрын
    • came here to comment exactly the same 😅

      @Mateusz143@Mateusz143 Жыл бұрын
  • i love how you sped up the parts where you type. usually these videos where people write code in real time get boring quickly because you have to wait for them to type something out. not you however, you're making this really entertaining to watch :D

    @jemand771@jemand7712 жыл бұрын
    • Sped up? No man, those parts are actually slowed down 😉.

      @ArjanCodes@ArjanCodes2 жыл бұрын
    • @@ArjanCodes I thought it was simply a good editor autocompletion!

      @zapazap@zapazap2 жыл бұрын
  • I like how you're like Good code => nice smell Bad code => bad smell Lmao

    @Sciencedoneright@Sciencedoneright2 жыл бұрын
    • He's a smelly guy...

      @notinterested8452@notinterested84522 жыл бұрын
    • @@notinterested8452 lol

      @Sciencedoneright@Sciencedoneright2 жыл бұрын
  • Did you notice that the refactoring at 5:52 "Code smell #2: duplicate code" is the exact reverse operation of the refactoring at 13:40 "Code smell #6: using boolean flags to make a method do 2 different things" ? In the first case we combine multiple functions into a single one by adding a parameter. In the second case we remove the parameter and split the function in two. In one case it's better to combine to avoid duplication and in another it's better to split to avoid complicated code. Goes to show programming is not about blindly memorizing language features and rules but there is a sense of 'taste' involved.

    @thomasburette9129@thomasburette91292 жыл бұрын
    • Well spotted! Note that the underlying principle in both of these is actually the same: single responsibility. In the first case, we improve the definition of the responsibility, leading to less duplication and easier ways to extend (finding employees is now possible for any role). In the second case we split the method in two to separate the two responsibilities that were in the single method.

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • I barely know python yet I love your content. It's amazing. I hope one day you write a book (preferably online because you can keep updating it). I'd love to buy it.

    @priteshugrankar6815@priteshugrankar68152 жыл бұрын
  • Thanks! This was way more useful than the lesson I had on codesmells when studying (they used the same book). These concrete examples and simple explanations of why it's smelly really help with digesting this 'dry' matter. And it isn't just useful with Python but with Java and other OO languages as well.

    @polyliker8065@polyliker80652 жыл бұрын
    • Thank you, glad it was helpful!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • The algorithm brought me here. Love the instruction and examples. Great work!

    @grrsa@grrsa2 жыл бұрын
    • That’s really kind, thank you - happy that you like the video!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • My favorite python instructor now. I've started watching all your videos. Your tutorial helped me improved my coding style.

    @zacky7862@zacky78622 жыл бұрын
    • Thanks, happy this is helpful to you.

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • after watching your cohesion coupling video i got the idea on my own to fix it and started able to hunting the bad points in the code and its just because of your cohesion coupling video

    @fashionvella730@fashionvella7302 жыл бұрын
  • Love your style. Tempted to sign on to your course on API development.

    @borgehansen6680@borgehansen6680 Жыл бұрын
    • Thank you Borge, hope to welcome you in the course!

      @ArjanCodes@ArjanCodes Жыл бұрын
  • The KZhead algorithm lead me here, first video I see of this channel. And... I like it! Nice, calm, and pleasantly explained. Good example and reasonable explanations. I already followed these guidlines to avoid "smell", but this does in no way reduce the value of this video, which is very nice and informative! I know how long a learning journey can be learning all this by mistake, so these kind of videos are gold! Subbed :)

    @Alexander91@Alexander912 жыл бұрын
    • Thank you Alexander, good to hear you enjoyed it, welcome onboard. Hopefully you'll find some extra value in some of my other videos ;).

      @ArjanCodes@ArjanCodes2 жыл бұрын
    • @@ArjanCodes already have found a lot of value in your other videos! And also this video added value for me just by reiterating and summarizing! Edited my comment a bit to better reflect this ;-)

      @Alexander91@Alexander912 жыл бұрын
  • I'm still new to Python programming and I just learned a ton in these 20 minutes!

    @JeremiKress@JeremiKress2 жыл бұрын
    • Happy to hear that the video was helpful!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Hi @ArjanCodes. Loved this video. I am curious though, I've witnessed use of choices parameter in Django model fields in order to choose from limited values. Can the concept of Enum be used in those cases as well? If so, should we drop the use of choices at all?

    @Upendrahanda@Upendrahanda8 ай бұрын
  • I’m so glad I discovered your channel! Amazing stuff, thank so much

    @asdfghjkl36958@asdfghjkl369582 жыл бұрын
    • Thanks - I'm happy that you like the videos!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Nice collection of code smells - I know them well :) One nit - when you broke out the holiday methods, you forgot to add a test for payout_a_holiday() - demonstrating the value of checks, guard rails, etc. Cheers!

    @AndreLaBranche@AndreLaBranche Жыл бұрын
  • Actionable, Entertaining and not alarming (get enough of that in the news). Thank you sir.

    @tomkirbygreen@tomkirbygreen2 жыл бұрын
  • Awesome. I agree with all 8 smells and I've been struggling with the errors which you have now enlightened for me. Thank you 🙂

    @barrykruyssen@barrykruyssen Жыл бұрын
    • Thanks so much Barry, glad the content is helpful!

      @ArjanCodes@ArjanCodes Жыл бұрын
  • Great vid. I'll definitely have to utilize enums more; crazy how something as small as that makes it a lot neater. Love comprehensions as well but I stray away from them when it becomes too complex; readability, as you mentioned, is important. Anyway, very well done on your explanations man.

    @77ownage@77ownage2 жыл бұрын
  • Thank you for the bonus tip on custom errors. This was something I always said I will get to later. If you do not do it up front, later never comes...

    @rick2591@rick25912 жыл бұрын
  • Excellent video! I’m guiding my nephews learning and I will definitely share this with them. Brilliant and compact! 🎉

    @StephenRayner@StephenRayner Жыл бұрын
  • This was good. Like really really good. I am honestly suprised by the quality of this. Would definitely appreciate more videos like this. Also you earned a subscriber.

    @jakubjakubec9693@jakubjakubec96932 жыл бұрын
    • Thank you Jakub, glad you liked it!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • This is a super awesome video!! These tips are super helpful and I really loved your delivery style! Liking and subbing, keep it up! :)

    @angushenderson6748@angushenderson67482 жыл бұрын
    • Thank you! Will do!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Thank you. I've tried my hand at proper coding, but I've never been able to wrap my head around certain concepts, in the past. I subbed in the hopes of learning more in depth.

    @AriManPad8gi@AriManPad8gi2 жыл бұрын
    • Thanks Eric, hope the videos help you.

      @ArjanCodes@ArjanCodes2 жыл бұрын
    • @@ArjanCodes this one did certainly

      @AriManPad8gi@AriManPad8gi2 жыл бұрын
  • I love your great practical advice on coding design. Thank you very much!

    @bryan_hiebert@bryan_hiebert2 жыл бұрын
    • You're welcome and glad to hear you like the content!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Great video, I liked your presenting style. I will be looking at more videos! Thanks for the nice examples!

    2 жыл бұрын
    • Awesome, thank you!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • This is the best python video I've ever watched. Loved the way you explain each and every change

    @leninkennedy2760@leninkennedy27602 жыл бұрын
    • Thank you, glad you enjoyed it!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Hi! This is my first video of your channel and you are great explaining and dividing a topic in steps. The video route me to thinking: is it really necessary to import other "advanced" topics in order to refactor your code? If I am the only person reading it, sure, why not? If I know how to use dataclasses, I would have no problem. But if I write code where other persons are involved, I would rather leave the code "not perfect" but easier to understand to more pythonistas. Maybe they don't know dataclasses too well, or never used in a project, or an inheritance of ABC looks weird. I still learn a lot from this video! Subscribed

    @Aucacoyan@Aucacoyan2 жыл бұрын
  • Amazing video!!! Sharing right now with my crew!

    @marcosgomes3140@marcosgomes31402 ай бұрын
    • Thank you so much!

      @ArjanCodes@ArjanCodes2 ай бұрын
  • Amazing video! What a perfect way to learn about some new possibilities to improve my code. Really great!

    @Kahitar1@Kahitar12 жыл бұрын
    • Glad you enjoyed it!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Hello Arjan, nice video as usual 🙌 I have a couple of questions : - This is the second time you create an exception class and you put the message as a parameter to the class. I am wondering, why don't we just create the message using the other parameters instead ? - Second question is more like a request. I am always wondering what is the best to organise the files in python ? is it like java where we create 1 file per class ? It would be useful if you can make a video talking about this subject specifically if there are some principles to follow in general. Thanks again ! see you next Friday ☺️

    @marwensallem1397@marwensallem13972 жыл бұрын
    • Defining the message in the exception class itself is definitely a good option as well. I kind of did it automatically at the point where I’m raising the exception, as a habit. For your second question, I would indeed start with creating one file per class/concept. I’ll think about doing a video about code organization. That’s a good topic, thanks for the suggestion.

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • I love you! Your explanations are amazing. Subscribed for more!!!

    @agar.iodestiny8677@agar.iodestiny86772 жыл бұрын
    • Thank you, glad you like the content!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • nice quality! channel definitely deserves more subs

    @FrozenArtStudio@FrozenArtStudio2 жыл бұрын
    • Thank you!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Great examples. Can you please start a series on complete back-end Dev from scratch where you go through all concepts like handling loggers, exceptions, config management following clean architecture

    @sachinjogi1995@sachinjogi19952 жыл бұрын
    • Thank you for the suggestion!

      @ArjanCodes@ArjanCodes2 жыл бұрын
    • @@ArjanCodes please do this series

      @prudhvirajchowhan@prudhvirajchowhan2 жыл бұрын
  • That's the kind of videosI was looking for. Thanks for the High Quality content.

    @talhaamir9023@talhaamir90232 жыл бұрын
    • Thank you Talha, glad you liked it!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • I enjoyed this video! Very cleanly done and to the point.

    @josephlyons3393@josephlyons33932 жыл бұрын
    • Thank you, glad you liked it!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • To extend on isinstance, as some have asked in the comments. One use case that I consider legit is when you are writing generic API functions. Since you cannot overload functions in Python, isinstance might be the cleanest solution. Consider numpy's sin function (I am not sure how it is implemented though). If it takes a float, it returns a float, if it takes a python list, it returns a numpy list. Especially if you are working with basic types, and you cannot make use of inheritance because you do not control the code using your library, this approach might be necessary. Another case is assert statements, or testing, when you want to make sure an object actually is something that you expect it to be. You might not need this kind of tests if your code is thoroughly type annotated though. Finally, if you are writing super generic magic that you need if you are developing a testing library, a framework etc. (which most people don't), or something that processes generic code objects (think pypy) it might be necessary.

    @arkocal1611@arkocal16112 жыл бұрын
  • Found your channel today through a random recommendation. Already learned something in the first codesmell: I didn't know about the Enum library. I built these kind of types by hand, assigning ints to constants. E.g. PRESIDENT = 1, SUPPORTDESK = 2, ROLES = {PRESIDENT, SUPPORTDESK} (and yea, there's already the risk of not updating the roles set when adding a new one.

    @unusedTV@unusedTV2 жыл бұрын
  • 16:40 The KeyboardInterrupt exception is not inherited from class Exception, but from BaseException (according to Python 3,7 docs). Such it is not caught here. But it would catch a bdb.BdbQuit, which is triggered when the Python application is to be aborted while being debugged with the Python debugger.

    @temmayB@temmayB2 жыл бұрын
    • Deep lore

      @jackwii1472@jackwii14722 жыл бұрын
  • I loved this kind of format, I would've done some of the mistakes shown here so is nice getting to see the process to get the "correct" reasoning. Thanks for the video!

    @cristobaljvp@cristobaljvp2 жыл бұрын
    • You’re most welcome!

      @ArjanCodes@ArjanCodes2 жыл бұрын
    • IMO a lot of his “correct” solutions can arguably be worse than the smelly solution in practice depending on context. In programming there are almost no clear guidelines. You should always think about what the cost vs benefit of doing it one or another way is. Don’t follow simple strict rules or blindly avoid “smelly code”.

      @spaceowl5957@spaceowl59572 жыл бұрын
  • For #4, I’d argue even better would be hourly_rate_ and then the currency code, e.g. hourly_rate_CAD . That way it’s much more specific, the name is shorter, and it sets-up clarity when you continue development and potentially add other currencies. …should also be using the decimal module for handling money, not floats, echoing the “use builtins” bit from before. Edit: Good job with the thumbnail. I was furious already. XD

    @liesdamnlies3372@liesdamnlies33722 жыл бұрын
    • Why not go the right way and implement currencies dynamically ? If you already think about having different currencies then they shouldn't be part of any variable naming.

      @Vedurin@Vedurin Жыл бұрын
  • Got this video in my recommendations! Very instructional, thanks!

    @saxtremer@saxtremer2 жыл бұрын
    • Glad you liked it!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Nitpick: you introduced another smell I often find in OOO code, that is, objects (in this case the employee subclasses) taking on repetitive behavioral responsibility. In this case, having method on the employee class that interacts with something (in this case by printing their pay) rather than simply defining a method that returns a value. I think this was just caused by the simplicity of your example but just wanted to highlight this to others watching, just in case they fall into this trap while refactoring.

    @dv_xl@dv_xl2 жыл бұрын
    • Was going to point out this, in the real world there's much more going on, paying an employee will most likely interact with other parts of the system that Employee as no business depending on.

      @AndreRomano272@AndreRomano2722 жыл бұрын
    • I'm not sure what you mean by this. Could you explain further?

      @flam1ngicecream@flam1ngicecream2 жыл бұрын
    • ​@@flam1ngicecream Don't mind him. I don't get it either. Read the comment by Valmir Memeti. It makes 1000% more sense and I think that's what he's trying to say. I think.

      @V_baddict@V_baddict2 жыл бұрын
  • The intro to this is superb!!!

    @edgeeffect@edgeeffect2 жыл бұрын
    • Thank you 😊

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • This guy is a treasure, a real python expert on KZhead.

    @khaleeji23@khaleeji232 жыл бұрын
    • Thank you so much, glad you liked the videos!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • What is the shortcut that you used in 6:51? :) Thank you for the video as well really amazing!

    @alimohamedabdelrehim6582@alimohamedabdelrehim658210 ай бұрын
  • Nice video; good content and pleasant, relaxing, presentation. Many thanks!

    @adrianbool4568@adrianbool45682 жыл бұрын
    • Thank you Adrian. Glad you enjoyed it!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • This is second your video I have seen and this is really new level for me, thanks for your job!

    @alexbelov6287@alexbelov62872 жыл бұрын
    • Thank you Alex, glad to here you like the videos.

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Would you consider making a tutorial for creating a CI/CD Pipeline in Python? (Ideally with only open-source dependencies) I think it would be really interesting and empowering!

    @NotTouchable@NotTouchable2 жыл бұрын
    • Thank you for the suggestion! I'll make a note of this.

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • I think it's important to know when one should or should not use list comprehensions. Just because something can be done as a nifty one-liner doesn't mean it's always the ideal solution. I see too many mid-level developers try and get fancy cramming logic into them to reduce characters at the expense of readability, which is just another code smell. If the two methods perform the same and one is significantly harder to read by the next developer, I'd argue that's worse. Your example does not fall into this category, but when you see people start chaining ternary logic operations in a comprehension it can get ugly quick. List comprehensions are usually a bit faster than implementing via a for loop though due to the time appending each item rather than initializing the full list with the comprehension results. Great video.

    @coltonmccormack8978@coltonmccormack8978 Жыл бұрын
  • omg i loved this channel, it let me to other level in programming terms

    @miguelvasquez9849@miguelvasquez98492 жыл бұрын
    • Glad to hear it’s helpful!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • You are so good! congratulations!

    @jardelpereirazermiani7366@jardelpereirazermiani73662 жыл бұрын
  • What an excellent video. The way you explain and demonstrate things makes this one of the best Python channels out there. Your choice of topics is also spot on. Just a sidenote: I don't think listcomps are considered "built-in functions" as you claim in this video. sum()/max()/any()/etc. are built-in functions. listcomps and genexes aren't.

    @valorien1@valorien1 Жыл бұрын
    • Thanks! And you're right, they're not built-in functions, but they're built into the syntax.

      @ArjanCodes@ArjanCodes Жыл бұрын
  • This is really helpful. Thank you.

    @kabauny@kabauny2 жыл бұрын
    • Glad you liked it!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • This is so nice to see. I’m glad I was able to keep up and do implement a lot of these already but I did get lost on the “-> None” and that bonus question is as lost on me as far as how the error class was created (some learning to do there fore sure). For reference, I’m no swe but write scripts a lot for data science and business automations (like reports, usually). Easy subscribe! Also you type like a machine!

    @MyMattinthehat@MyMattinthehat2 жыл бұрын
    • Every function returns a value even when not explicitly doing so, which is the nothingness value known as None (or null or nil in other programming languages). It has a type of NoneType, but for convenience you can write just "None" as a type hint. The interactive Python shell also prints literally nothing if something evaluates as None, which can be seen comparing print("Hello") with sys.stdout.write("Hello "), which besides the actual writing returns the number of characters written.

      @D0Samp@D0Samp2 жыл бұрын
  • Great explanations as usual. Have you considered doing a video on good practices when working with pandas dataframes? Thanks!

    @javierfernandez8557@javierfernandez85572 жыл бұрын
    • Yes, I have! I’ve not focused to much on data science / machine learning topics at the moment, but I might do more videos on that topic if there is enough interest.

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Looks like a live coding session replay. Great video!

    @vivanjaiswal1039@vivanjaiswal10392 жыл бұрын
    • Thank you!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • if you dont mind me asking. could you do a video going over the itertools/functools builtin modules? itertools is a module i always forget what does what in, since its a relatively rare usecase, but when you can use it, it often saves a lot of time. having a overview video would be a huge help with it

    @proud22beme@proud22beme2 жыл бұрын
    • Thanks for the suggestion, I’ll put that on the list!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • This tutorial is great, thank you!

    @manuelpineda9067@manuelpineda90672 жыл бұрын
    • Glad you enjoyed it, Manuel!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • I think I am strange, because I think these videos really entertaining. Great Content!

    @marcosoliveira1538@marcosoliveira15382 жыл бұрын
  • Brilliant, in terms of exceptions, what do you think of the "look before you leap" vs "ask for forgiveness" philosophies?

    @nicoz6540@nicoz6540 Жыл бұрын
  • @6:50 What key combination did you use to replace all instances of "managers" with "employees" within the function??

    @deemon710@deemon710 Жыл бұрын
  • This video is excellent, both in terms of editing and content. Pointing something out as a constructive feedback. I found the thumbnail to be misleading. The display of the uncaught exception error almost made me avoid the video as I thought "oh, once again the same old mistakes that are pointed out in ever video". Instead, your video had no trivial content! You could choose something more original for the preview! Anyway, thanks for the content, great job! Subscribed!

    @filippopisello@filippopisello2 жыл бұрын
    • It also contained incorrect information. First, `except Exception` will not catch a SyntaxError. Second, many many companies consider using built-in error types good practice. Why? You're reducing the amount of code you need to maintain. You'll also hear this from python core devs as well. Such as Raymond Hettinger and Jack Diederich.

      @codeman99-dev@codeman99-dev2 жыл бұрын
  • VERY useful video! Good work!

    @alfredoch3811@alfredoch3811 Жыл бұрын
  • Awesome video! Although like you mentioned, the code you replaced with the list comprehension was readable. So I'd like to think that there's also a "smell" consideration for code that's written to be intentionally readable. And while list comprehensions are cool and have less... odor? Perhaps they aren't the best choice if you're trying to place olfactory hints for non-experts to follow along with? Just a thought, and loved the video, I'm still a noob and have yet to put classes or methods to use in my code but watching you write really helped give me a higher level understanding I think. Thanks

    @cgoodm@cgoodm2 жыл бұрын
    • This "non-experts" thing comes up frequently for many languages, and it leads to bad code. You are not responsible for writing code for inexperienced developers in a language. Assume your code will be maintained by a competent developer. Make your code readable _for them._ Of course, that doesn't mean you should write code that is unusual, esoteric, or "clever", unless you've come back to optimize something, and commented what and why thoroughly. In terms of Python, you should write "Pythonic" code. List comprehensions are Pythonic.

      @bloodgain@bloodgain2 жыл бұрын
  • Good one Arjan, Thanks ! (we did catch the reference to Apocalypse Now :-) Any plans to produce intermediate level project videos ? like a Ray Tracer Maybe..? I would love to learn a decent project done end to end, from a tutor like you.

    @RakeshMandava@RakeshMandava2 жыл бұрын
    • Thank you Rakesh, glad you liked it. I’m definitely thinking about doing something like that. But probably more in the direction of building a backend API or a complete app with UI. Building a raytracer though is a very specialized job that requires a lot of in-depth graphics knowledge, so I don’t expect to be doing that anytime soon.

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • I like this video, because it's a good resource to improve after taking it all the "learn python in 30 minutes" videos =) Instant sub.

    @SeamusHarper1234@SeamusHarper12342 жыл бұрын
    • Glad it was helpful!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • clear and helpful video! :)

    @yc691@yc6912 жыл бұрын
  • I love your content. You just got a new subscriber.

    @pilalouisasombo7053@pilalouisasombo70532 жыл бұрын
    • Thank you! And welcome onboard 😉.

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Your understanding of Python is top notch!

    @LabEveryday@LabEveryday2 жыл бұрын
    • Thank you so much!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Wonderful, clear and concise, only one problem.... I now have to go and refactor my project, no worries, only 10k lines or so.

    @apwatts@apwatts Жыл бұрын
    • Haha, thanks & I know the feeling 😉

      @ArjanCodes@ArjanCodes Жыл бұрын
  • Great content! loved the Bitcoin reference 😆, definitely is not as much now

    @alejandropereira5680@alejandropereira5680 Жыл бұрын
  • Great video! Everything was explained very well.

    @Schian@Schian2 жыл бұрын
    • Glad you enjoyed it!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • This channel is gold! Tysm!

    @SaifUlIslam-di5xv@SaifUlIslam-di5xv2 жыл бұрын
    • Glad you enjoy it!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • My code is a lot more clean thanks to this video! When I write complex scripts I usually throw down as much code as I can as fast as I can. While my code is readable it isn't as easy for somebody other than myself to read as it should be.

    @petemartinez3017@petemartinez30172 жыл бұрын
    • Thanks Pete, glad the video helped you.

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Liked, subscribed, alerted, and commenting. This was amazing. The difference between debuggin with print("error here") and raising your own errors..

    @Fernando31611@Fernando316112 жыл бұрын
    • Thank you so much! Glad that you enjoyed the video.

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Love everything! thank you

    @blackboy424@blackboy4242 жыл бұрын
    • Thank you very much - glad you like it!

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • I feel personally roasted, yet this is the code review I needed.

    @OlegBedriy@OlegBedriy2 жыл бұрын
  • It's surprising to me to find a coding youtuber that's so entertaining and educational. I like how funny you are. Just one question: are you actually that fast when you type or are you just playing the parts where I hear you type in timelapse or something? It sounds like a machine gun.

    @cherryb0ng@cherryb0ng2 жыл бұрын
    • Thank you! The fast typing is all Hollywood magic (in other words, I sped up the video to keep things interesting for the viewer).

      @ArjanCodes@ArjanCodes2 жыл бұрын
  • Very good content. Thank You!

    @MarcoGuardigli00@MarcoGuardigli00 Жыл бұрын
    • Thanks so much, glad it was helpful!

      @ArjanCodes@ArjanCodes Жыл бұрын
  • Residual code smell: all functions rely on side effects (print statements) instead of actually manipulating a state. In other words; there is no separation of data and view.

    @nochan99@nochan992 жыл бұрын
KZhead