5 Good Python Habits

Поділитися
Вставка
  • Опубліковано 20 тра 2024
  • Here are 5 good habits you should consider building in Python.
    ▶ Become job-ready with Python:
    www.indently.io
    ▶ Follow me on Instagram:
    / indentlyreels
    00:00 Learning Python made simple
    00:05 if _name_ == ‘__main__’
    03:00 main()
    04:50 Big functions
    08:07 Type Annotations
    14:39 List comprehensions
    17:22 Outro

КОМЕНТАРІ • 409

  • @Indently
    @Indently  2 місяці тому +52

    A huge thanks to you guys who are sharing more useful habits and pointing out some of the benefits that I left out in the comment section. You help both me and many other developers to understand more about this beautiful programming world!
    I'm super appreciative when you guys share cool information :)

  • @al3csutzul
    @al3csutzul 2 місяці тому +411

    after hour and hours and trainings, someone explains in 3 seconds the role of if __name__ = ''__main__' ,omg, thx a lot !

    • @lfcbpro
      @lfcbpro 2 місяці тому +8

      100000%

    • @DrDeuteron
      @DrDeuteron 2 місяці тому +3

      if I get a script w/o it, I freak out.

    • @demonman1234
      @demonman1234 2 місяці тому +6

      It’s good practice (like he said), a lot of beginners/beginner orientated videos don’t use it though, because either they’re not writing code big enough for it to matter (most beginners use a single file), or for the beginner orientated videos they just pass over it because it’s not really important for the scope of the tutorial, however I believe its function should be taught a bit more than it is…

    • @dt3688
      @dt3688 Місяць тому +1

      Still don’t really understand so it’s like if the module is directly imported from the main file then run?

    • @demonman1234
      @demonman1234 Місяць тому

      @@dt3688 Sorta. So, the purpose of the if statement is to explicitly check if your file is run as main (When ran directly the interpreter sets the variable __name__ to “__main__”, but when imported it’ll set __name__ to whatever your filename is.)
      In doing so, whatever you have inside that if __name__ == __main__ statement will be ran ONLY if you directly run that file/script. Otherwise, if you import the file, whatever you have inside the if statement will not be run.
      This is useful (mostly) for test code, or if your file is meant to run as both an import and a script on its own. This is to keep whatever imports your script from accidentally running the functions in the file. Ex:
      def PrintSomething():
      print(“This will run”)
      if __name__ == __main__:
      PrintSomething()
      In this code, it will only print the string to your console if ran as a script directly. If you import it, PrintSomething() will not run.
      (Formatting may have broken for youtube with the underscores for name and main, but yk what I meant)

  • @DamienDegois
    @DamienDegois 2 місяці тому +132

    Another important thing with main() is the scope. Code run in "if name main" uses global scope and can/will pollute it. Running code in main has the function's scope :)

    • @ianroberts6531
      @ianroberts6531 2 місяці тому +27

      I would argue that this is _the_ most important reason to use a main() function. It's not just a way to make your code look better organised, it has fundamentally different semantics from just putting code in a top-level if-name-is-main

    • @Thebiggestgordon
      @Thebiggestgordon 2 місяці тому +5

      True, but you should never ever run a main function AND THEN run extra code in the global scope later, so namespace pollution doesn’t rlly matter.

    • @leschopinesns100
      @leschopinesns100 2 місяці тому +3

      I didn't think about that, the arguments in the video didn't convince me at all, but this is a really good reason to use a main funciton.

    • @AmodeusR
      @AmodeusR Місяць тому

      What do you mean by "pollution"?

    • @leschopinesns100
      @leschopinesns100 Місяць тому +5

      @@AmodeusR I think he means having a bunch of variables exposed to the global scope is polluting it, and can be problematic when importing a module.

  • @farzadmf
    @farzadmf 3 місяці тому +187

    Just one thing about list comprehensions: they can very easily become very hard to read, so I'd say "don't overuse them"

    • @LittleLily_
      @LittleLily_ 2 місяці тому +24

      A way to avoid them becoming unreadable without resorting to loops is to split the transformations into multiple separate list comprehensions on new lines, and assigning the result of each line to a variable with a descriptive name to show what the intermediate state represents. Ideally you would use generator comprehensions as well for the intermediary steps and only convert to list at the end (if it's even needed in list form at all).

    • @Imperial_Squid
      @Imperial_Squid 2 місяці тому +10

      One major example I've seen, unless you've got a very descriptive comment attached or it's doing a super simple operation, don't put two for loops in one list comp

    • @farzadmf
      @farzadmf 2 місяці тому

      Exactly!

    • @GoswamiSagarD
      @GoswamiSagarD 2 місяці тому +1

      It depends how you use them. Variable Naming has a huge impact in readability as well.
      For example: taking the person names > 7 case, if we were to rewrite with more descriptive names it can convey a sense of reality and make the code more relatable to the readers.
      listLongNames = [ pp for pp in people if len(pp)>7 ]
      See, makes so much difference.

    • @DrDeuteron
      @DrDeuteron 2 місяці тому +1

      ["["".join(letter) for letter in word if letter.isalpha()] for word in "why would you say that?".split()
      ]

  • @666ejames
    @666ejames Місяць тому +27

    Slight tweak to this main() thing. I think its better to have main return an int and then have sys.exit(main()) in the if name == main bit. That way the program behaves like a normal commandline program with an exit status. You can add in error handling and return a non-zero exit status easily this way.

    • @pseudotasuki
      @pseudotasuki 25 днів тому

      That's a useful tip if you're building a more complex script, but probably a bit outside what I'd put in a boilerplate.

  • @Aplysia
    @Aplysia 2 місяці тому +73

    A main(with parameters) is even more useful when testing. Allow the if __name__ block to handle command line arguments and then pass sanitized versions of those to your main. Then your tests can just call main directly and test various scenarios.

    • @mnxs
      @mnxs 20 днів тому +1

      I'm just learning python, but if you were to do this, how would you suggest you test your input parsing and sanitation itself? I'm thinking I'd have the '__name__' block call a 'parse_and_sanitise_inputs' function to do that (and pass its results to main), which could then be tested separately.

    • @TheStickofWar
      @TheStickofWar 3 дні тому

      @@mnxs you would have separate files that use those functions to run some tests that test they do their job. You don't need a dedicated "parse_and_sanitise_inputs" function, for example if you want to check that you provided a correct number within a certain range, such as an age, then you would do a "parse_age" or similar function, that would check if age > 0 and is a number and return that number.
      I would use something like arg_parser in python

  • @PikalaxALT
    @PikalaxALT 2 місяці тому +29

    Hats off to my main man Bob, he did nothing wrong.

  • @AnthonyFammartino
    @AnthonyFammartino 3 місяці тому +32

    For number 2, another bonus is if you declare a main function you can expose it in an init or import it. One example is importing when testing.

    • @jamesarthurkimbell
      @jamesarthurkimbell 3 місяці тому +10

      Another bonus is containing the variables. You won't accidentally use a globally-scoped name in another function, if that name is local to the main instead

    • @Indently
      @Indently  2 місяці тому +4

      Thanks for sharing the benefits guys! I often forget to mention simple things like these when creating the videos as a one man team.

    • @pseudotasuki
      @pseudotasuki 25 днів тому +1

      It's similarly useful if you're using asyncio.

  • @justwatching1980
    @justwatching1980 2 місяці тому +10

    4:11 thanks for this. Structuring my code to have a main function that runs the others and an if statement that runs main is a great idea to clearly show what the program does.

  • @KingJellyfishII
    @KingJellyfishII 2 місяці тому +30

    for list comprehensions: a lot of common patterns can be covered by `filter` and `map`. For example, instead of doing [p for p in people if len(p) > 7] you can do filter(lambda p: len(p) > 7, people) which I find quite a lot more readable because it's explicitly telling you that the only thing happening in this statement is we're getting rid of some values based on a predicate.

    • @DrDeuteron
      @DrDeuteron 2 місяці тому +19

      list(itertools.compress(people, map((7.).__lt__, map(len, people)))
      or
      functools.partial(operator.lt_, 7).
      which I like because it tells people to stay tf out of your code.

    • @kuark5290
      @kuark5290 2 місяці тому +1

      @@DrDeuteron ahahahahhaha

    • @fuchrr4519
      @fuchrr4519 Місяць тому

      ​@@DrDeuteronlol

  • @pUrbanNinja
    @pUrbanNinja 2 місяці тому +5

    Comprehensions come in various flavours. There are also set { x for ...} and dict { kev: value for ...} comprehensions, as well as generator expressions ( x for ...) .
    The latter is interesting if performance matters and you know that you traverse the result at most once. Exceptionally good for loading tuple data into polars or pandas for example.

  • @artyom7891
    @artyom7891 2 місяці тому +30

    At 10:45 it is better to use Iterable from the typing module to annotate "elements". This way you could pass not only lists but also tuples or even generators.

    • @DrDeuteron
      @DrDeuteron 2 місяці тому +2

      it's called duck typing.

    • @nathanrasmussen931
      @nathanrasmussen931 Місяць тому +3

      @@DrDeuteron yes but the point of type hinting is to reduce the issues you have with duck typing. Duck typing is both a strength and a weakness of Python. And better type hints are more meaningful so it is encouraged to use type hints imported from the typing module.

    • @DrDeuteron
      @DrDeuteron Місяць тому +1

      @@nathanrasmussen931 i agree, especially containers vs iterables, but what do you do for a function that takes floats, int, all the numpy versions, or arrays, matrix etc…is there super that covers all that?

  • @mathewrtaylor
    @mathewrtaylor 2 місяці тому +5

    Super appreciate this. Need to include type hinting into my coding. Your explanations make sense.

  • @damien__j
    @damien__j 2 місяці тому +3

    This came at PRECISELY the right time for the type annotations stuff 🎉 big thanks

  • @GereBear85
    @GereBear85 2 місяці тому +2

    In the case of making [p for p in people if len(p) > 7] more understandable inherently, I would opt for naming, such as 'n', 'name,' 'name_str' .. [name for name in people if len(name) > 7]. Great vid!

  • @michaelrstudley
    @michaelrstudley 2 місяці тому +5

    Another great video with great examples. Thank you. Mypy, who knew?

  • @alexlim6968
    @alexlim6968 Місяць тому

    I've been following you for few months now, you provide amazing content, and I really appreciate your videos. Thank you so much. You are helping so many students😊

  • @ratfuk9340
    @ratfuk9340 Місяць тому +2

    You can overdo the whole "small functions" thing and I think this is actually a perfect example of when not to do that. Unless you reuse the functionality elsewhere, don't extract the logic into it's own function bc it's much easier to read code that hasn't been spread out all over the codebase for no good reason. If you must have a predicate function with a descriptive name, just make a lambda. "You never know" is a good way to pollute the codebase with functions that are called in like one place. Plus, naming is hard and the more functions you create, the more likely it is that you have semantic inaccuracies in the names.

  • @emmafountain2059
    @emmafountain2059 2 місяці тому +22

    Cool video! These are great tips, but I want to point out that IMO there’s some nuance to be had with your “big function” tip, it’s important to recognize there’s costs that come with extracting code. Oftentimes you are never going to use that functionality again, extracting that code can actually make it more difficult to find certain logic just by increasing the sheer number of functions and lines of code, and it will inevitably take additional time and effort to do this extraction which can often be better used elsewhere.
    Reusable small functions are great, especially in large collaborative projects, but there are plenty of times where the overhead just isn’t worth it.
    Generally I find it isn’t worth it to abstract functionality until I actually need it somewhere else or if the function is unreadably long, and in that case you often also want to extract it into its own module

    • @TheFwip
      @TheFwip 24 дні тому

      Definitely agree. I also think the example function was not "big," at only seven lines and two if statements.
      Breaking up big functions is often good, but I probably would have left this example function alone.

  • @zangdaarrmortpartout
    @zangdaarrmortpartout Місяць тому +1

    having an actual main method and nothing else under the main check is actually very good practice. it allows for easier unit testing especially when using command line arguments, as you can call the main method the same way it would be called from the cli
    it is not possible if you actually code under the check

  • @shri4r
    @shri4r Місяць тому

    Thanks so much for the great video on good Python habits. I know you put a lot of time and effort into it, and it shows. The video is well done and easy to understand.

  • @uuuummm9
    @uuuummm9 2 місяці тому +4

    For the first two tips i would encourage to write real tests instead of "tests inside a module". Yes, it will take extra time, but will serve much better.

    • @DrDeuteron
      @DrDeuteron 2 місяці тому +1

      how about a video on unittest or the current most bestest argparse?

    • @retagainez
      @retagainez 4 дні тому

      Some of these are definitely bad habits.
      Definitely much better to do it this way, by writing a unit test. Funny to mention "testing" but not use any built-in tests idiomatic to the language... It won't actually take more time since the execution environment will be more predictable and you avoid all the issues while having better design of code.

  • @chyldstudios
    @chyldstudios 3 місяці тому +400

    don't use "..." for a placeholder, use "pass".

    • @NathanSMS26
      @NathanSMS26 3 місяці тому +24

      Whats the advantage of pass vs …?

    • @chyldstudios
      @chyldstudios 3 місяці тому +70

      @@NathanSMS26 I think pass is more visually obvious than the ellipse, but if you prefer the ellipse, then enjoy :)

    • @davidmurphy563
      @davidmurphy563 3 місяці тому +92

      Actually, the best practice is to throw a not implemented error so you don't forget about it.. Honestly though, it's too much effort. I always thought python should have a keyword for this, something nice and short that throws an exception.

    • @Zaniahiononzenbei
      @Zaniahiononzenbei 3 місяці тому +97

      ​@@davidmurphy563 "assert false"

    • @davidmurphy563
      @davidmurphy563 3 місяці тому +15

      @@Zaniahiononzenbei Oh, that's a good one! I'm going to use that!

  • @azamatkuzdibay9411
    @azamatkuzdibay9411 2 місяці тому +10

    OMG!!! He said Java!! I leave!!!

  • @user-ou7hd1zi2i
    @user-ou7hd1zi2i 2 місяці тому

    Thanks so much for this video. You're such a life saver. Coming from an environment of using c++, I always dreaded the time I would run into an error when I run my python program simply because my editor couldn't catch the errors when I wrote them. Now with type annotations and mypy, I can begin to truly appreciate the power and simplicity of python.

    • @Indently
      @Indently  2 місяці тому

      I'm incredibly happy to hear you enjoy the type annotations :)

  • @ThomasVWorm
    @ThomasVWorm 2 місяці тому +1

    9:50 before you use a function, you should know, what it does. And you can insert every type which provides an upper-function and not only strings.

  • @JulioHOR
    @JulioHOR 2 місяці тому

    Excellent video @Indently. Keep going

  • @mellolta
    @mellolta 2 місяці тому

    I’m glad! Your videos become my scripts raise to another level

  • @Rossilorenzo-yf7oq
    @Rossilorenzo-yf7oq 2 місяці тому

    Today I encountered the first problem while I was learning Python.
    Surprised to see this video popped up to my scroll and I’m glad I watched this.

  • @EAenergy
    @EAenergy 2 місяці тому

    This is a good video and you absolutely should use type annotation. Type annotation will not help the user as stated in the video. The user most likely will be interacting with an app of some sort. Type annotation help developers who will use your code and help you, if you are using the function somewhere else in the code or reusing the function. Documentation will definitely help developers and in some instances can be used to create help for the end user.

  • @TheJaguar1983
    @TheJaguar1983 2 місяці тому +1

    I've never used type annotations because it never had any functional effect on the program, I've always worked in a team of one and I always just used vim, so had no syntax analysis. Also, I started with Python 2.6 and don't tend to catch up with new features. This is definitely something I need to work on, along with commenting my code more (or even at all).

  • @TheJaguar1983
    @TheJaguar1983 2 місяці тому +3

    I've always loved list and generator comprehensions. I often each part on it's own line because I feel it becomes more readable. For example:
    [
    p
    for p in people
    if len(p) > 7
    ]

    • @ValkoinenShiro
      @ValkoinenShiro 2 місяці тому +1

      Came into the comments to add this. Comprehensions, whether list, dict, set, etc., are much more readable if on multiple lines and you can even add more conditions, though I would advise for moderation.

    • @TheJaguar1983
      @TheJaguar1983 2 місяці тому

      @@ValkoinenShiro I tend to be guilty of overdoing it; almost like I'm trying to win an award for fewest statements. There's a point at which a generator function is cleaner and more readable.

    • @DrDeuteron
      @DrDeuteron 2 місяці тому

      @@TheJaguar1983 "clever" is not a compliment in python

  • @vitorlopes9967
    @vitorlopes9967 Місяць тому

    Question: how can i do a type annotation for a function passed as a parameter of annother funcion? Ex:
    def do_this(arg: float): return blablabla with arg
    def do_that(arg: float): return blobloblo with arg
    def what_to_do(arg: float, func: >Type that i wanna know

  • @aftabahmad5522
    @aftabahmad5522 2 дні тому

    As a beginner I found these habits very helpful thanks for providing

  • @pseudotasuki
    @pseudotasuki 25 днів тому

    One additional tip for type hinting: You can still use them even if you need to maintain compatibility with older versions of Python. Instead of putting the type hints inline, you can add them to a "stub" file. It's a bit more work to build and maintain, but it gets the job done.

  • @ki6fzb
    @ki6fzb Місяць тому

    Very nicely put together, thanks!

  • @thaimeuu
    @thaimeuu 2 місяці тому

    the 4th tip is pretty useful, thank you

  • @somnvm37
    @somnvm37 2 місяці тому

    I really like the "big functions" part but I have a few questions:
    1. how do I tell the difference between more "top-layer" functions and these small mini functions that just make things more abstract?
    i mean, in terms of naming, often you would want to be bale to have a good hierarchy of this.
    2. I'm not sure if this example is the best because one also needs to understand at which point should this separation happen. In practise the example probably should stay as it is, so that the code doesn't become more complex and hard to read.

  • @cosy_sweater
    @cosy_sweater 3 місяці тому +5

    Love this video. For the past 2 years I don't know how many times I've been helping my friends, who learn Python, to find a bug. And at the end the bug was simply using str int instead of int str. Also list comprehensions are super cool. My friends for some reason love writing list(filter(lambda ..., map(lambda ..., data ))) when you could just [int(n, 2) for n in data if len(n) == 8]. Also splitting big functions into smaller can sometimes be replaced with list comprehensions too. For example when you need to change data type with some specific data editing. While function is reusable, sometimes its functionality is very specific and unless you are good at naming things, small functions will be littering the code instead of helping

    • @LittleLily_
      @LittleLily_ 2 місяці тому +1

      The filter/map approach is nice to write when coming from other functional programming languages. You're right that they're not always as nice to read as list comprehensions, but in certain contexts they can make a lot of sense since they allow for greater re-useability than comprehensions.
      Say for example you already have a function that verifies someone is an adult like so:
      def is_adult(person):
      return person.age >= 18
      And that you have a function that returns the full name of a person like so:
      def full_name(person):
      return f"{person.first_name} {person.last_name}"
      Then at some point you want to take a list of people, and get the full names of everyone who's an adult. With list comprehension, if you wanted to re-use your existing functionality you would write the following:
      adult_full_names = [full_name(person) for person in people if is_adult(person)]
      Whereas with map/filter since they already expect functions, you dont need to invoke them, just pass them as is:
      adult_full_names = map(full_name, filter(is_adult, people))
      Obviously I left off the list() conversion in that, but in most cases with functional-style code you wouldn't be converting to lists very often, since leaving the data in generator form is much more efficient as each element can be streamed through multiple transformations without creating a bunch of intermediate lists. It allows you to write your code as if python was a lazy language like haskell, where values are only calculated when they're actually used/required.
      So basically I would use map/filter if I already have functions for the transformation I'll be doing, but if I would be having to write a lambda inside the map/filter, then I would instead use a list comprehension (or more likely a generator comprehension, again for performance reasons).

    • @Indently
      @Indently  2 місяці тому +1

      I was thinking about filter while I was writing the list comprehension, but the instant benefit of using the list comprehension for me was that I could write it out in a split second, while with filter I always need to hover over the function to see the little pop-up with the documentation to make sure I'm passing in things in the correct order.

    • @cosy_sweater
      @cosy_sweater 2 місяці тому

      @@LittleLily_ That is a very good point. In my example I pointed on using map() and filter() with lambda-functions. Usually those lambda-functions make code hard to read. I thing using existing functions is very clean
      Also I was talking about people, who is new at Python. So usually I can see my friends making map -> filter -> ... -> filter combinations. In such cases even using existing functions does not save readability. My point was that beginners sometimes make overcomplicated map/filter combinations that can be replaced with a single much more readable list comprehension

    • @LittleLily_
      @LittleLily_ 2 місяці тому

      @@Indently that's fair enough. the order of the arguments for higher order functions in any language generally always has the function first and data second, as that way you can more easily partially apply the function, for example with python you might write this:
      from functools import partial
      def full_name(person):
      return f"{person.first_name} {person.last_name}"
      people_to_full_names = partial(map, full_name)
      And now you have a reusable function that can operate on any list of people to return the full name of all of them like so:
      full_names_a = people_to_full_names(people_a)
      full_names_b = people_to_full_names(people_b)

    • @Graham_Wideman
      @Graham_Wideman 2 місяці тому

      @@cosy_sweater "pointed" --> "punted" maybe?

  • @analfabetorockebens
    @analfabetorockebens Місяць тому

    Thanks a lot for the advices!!

  • @davidmurphy563
    @davidmurphy563 3 місяці тому +5

    Well using main is not just prettier / more java like, it allows you to call the module externally from elsewhere which you can't do with the if statement. So there's a practical reason to do it, assuming you do intend to allow it to be called.

    • @philippk5446
      @philippk5446 2 місяці тому +1

      yeah but there is no point in calling a main from somewhere else! If you need to do that, the function you wrote is not a main.

    • @davidmurphy563
      @davidmurphy563 2 місяці тому

      @@philippk5446 Often there is a point, especially with scripts. Last week for example I wrote a simple script which sends a request to update a product. I called it update product and gave it a main. It's Django so the usual entrance is run() in terminal but I also call it from admin which runs main. Then I have another update products which loops through the products and updates each one.
      Point is, the same script is being called from numerous places - sometimes main, sometimes not - so, yes, there is very much a point.

  • @AmodeusR
    @AmodeusR Місяць тому

    I think the best reason to make a main function is the fact you can push utility functions to the bottom of the file and leave the *main* code at the top, not needing to scroll down to see the what the actual main code is.

  • @mzl1610
    @mzl1610 Місяць тому

    We can use filter function for the last one too
    long_names : list[string] = filter ( lambda name : len(name) > 7 , names)

  • @krzysiekkrzysiek9059
    @krzysiekkrzysiek9059 2 місяці тому

    That is a awesome kind of tips 👌

  • @harley_462
    @harley_462 2 місяці тому

    great content!
    subscribed.

  • @drow488
    @drow488 Місяць тому

    As someone who learned C before python, I immediately looked up if I could create an "int main()" equivalent, thus I always used the if __name__ == '__main__' out of habit and preference

  • @centerfield6339
    @centerfield6339 2 місяці тому

    The point of 2 isn't a "feeling" or anything like that. It's: a) testable, and b) importable from another package.

  • @vindexins
    @vindexins 29 днів тому

    You should use `List` from `typing`, insted of `list` to make linters work well.

  • @MuhammadAli-du2zy
    @MuhammadAli-du2zy Місяць тому

    The best __name__ = 'main' explanation i've ever seen and im writing this comment just 2 minutes in the video.

  • @Amonimus
    @Amonimus 29 днів тому

    Putting anything in ___main___ instead of main() is dangerous because variables in ___main___ will have a script-wide scope instead of function-wide, which can lead to surprizes. It's best to use ___main___ just to call main() unless global variables are intended.

  • @Crux161
    @Crux161 2 місяці тому

    Python is fun to code in, and you can do a lot of stuff - but I usually end up porting those ideas back to C. Cython is a nice blend sometimes but meshing them together can be a little painful in my experience. Probably a skill issue (on my part ofc) 😅

  • @user-zz7xz2up9x
    @user-zz7xz2up9x 2 місяці тому +1

    Love your videos :)

  • @nextisnowmain
    @nextisnowmain Місяць тому

    Thanks for the information

  • @nelsin11
    @nelsin11 2 місяці тому

    Very good video. Thanks

  • @ThomasVWorm
    @ThomasVWorm 2 місяці тому

    16:50 - true. You could use Ruby instead to have nicer code:
    long_names = people.select{|p| p.length > 7}
    and if you need them in upper case too:
    long_names = people.select{|p| p.length > 7}.collect{|p| p.upcase}

    • @schwingedeshaehers
      @schwingedeshaehers 2 місяці тому

      you could also use filter an map in py, iirc

    • @LittleLily_
      @LittleLily_ 2 місяці тому

      similar to how you'd write it in JS/TS:
      longNames = people.filter(p => p.length > 7)
      longNames = people.filter(p => p.length > 7).map(p => p.toUpperCase())
      the lambda syntax in python isn't quite as nice, so I think that's why most people don't like using stuff like map/filter over list comprehensions in python.

    • @mac68tm
      @mac68tm 2 місяці тому

      The problem with list comprehensions is not the syntax but how you layout the comprehension. I prefer to put everything on a new line as it makes it more readable:
      long_names = [
      p.upper() # list element
      for p in people # iteration
      if len(p) > 7 # condition
      ]
      and it is more readable then using filter and map.

    • @DrDeuteron
      @DrDeuteron 2 місяці тому

      @@LittleLily_ why does "p =>" appear in every call signature? what else is there? seems like redundancy...Guido don't like.

    • @LittleLily_
      @LittleLily_ 2 місяці тому

      @@DrDeuteron Its no different to the |p| in the ruby example, it's just how you define an anonymous function with an input argument named p

  • @lucas5nov
    @lucas5nov 2 місяці тому

    Excelente video.

  • @riteshkarmakar3597
    @riteshkarmakar3597 2 місяці тому

    Thank You!

  • @benitmulindwa8009
    @benitmulindwa8009 2 місяці тому +1

    Nice video! Can you make a video about pypi? It has become difficult and confusing to publish a python package, it would be appreciated if you make a tuto about it! Thank you!!

  • @CayoBuay
    @CayoBuay 10 днів тому

    For the self-documentating part around 11:30 ish, does this only work with PyCharm?

  • @xealit
    @xealit Місяць тому +1

    12:20 "someone will say it's obvious. But in programming obvious is never obvious enough." It's not about "obvious". It is about _explicit._ It must be explicit in the code, so that other programmers can easily understand what the code does, what's its intention. But also it must be explicit so that your tools can work with it, like PyCharm here. Otherwise you need ChatGPT to look at your code and guess what's meant by "upper" in the function name. Is it a verb "convert to upper" or is it a test for upper? Good code explicitly says what it does.

    • @Indently
      @Indently  Місяць тому

      Obvious is a common synonym in the English language, you're more than welcome to be pedantic and picky about words, but it's a lot of typing gone in the wind :)

    • @retagainez
      @retagainez 4 дні тому

      @@Indently Well, explaining something like this to a non-technical person might make you sound... full of yourself, if you say obvious often. It's not obvious to everybody!

  • @davidlu1003
    @davidlu1003 2 місяці тому

    Thank you, actually, I find this video is very very useful to me.😁😁😁

  • @sergiofernandeztesta6433
    @sergiofernandeztesta6433 2 місяці тому

    Besides comprehensions I prefer to use map or filter. I am not sure, but I think it's faster

  • @norbertdapunt1444
    @norbertdapunt1444 Місяць тому

    Awesome.

  • @EmperorRobin
    @EmperorRobin 2 місяці тому +1

    Regarding Big Functions. It sounds really similar to the argument that you should write all your small functions directly in cython. That way even if performance is not a concern right now those functions can be reused in potential other future parts of the code where performance might matter making your code more reusable.
    To that I would say: stop it, get some help.
    Just write the code and after it works if you see you have a performance bottleneck or a good reason to split off functions (code duplication or wanting to test only a part of a function) than do the work instead of always doing it prematurely.
    Stop optimizing for potential future scenarios at the cost of the present.

    • @Indently
      @Indently  2 місяці тому +1

      My only recommendation is that you plan your code before you write your code. Living in the moment is only advised if your program is as big as printing "hello, world".

  • @Websitedr
    @Websitedr 2 місяці тому

    Everything was solid up to the p for p in people I don't use any single character variables anymore it doesn't help with readability and I'm not trying to minify everything if the goal is to make it readable. I would just use a list comprehension when absolutely necessary.

    • @Rudxain
      @Rudxain 2 місяці тому

      I agree, but sometimes there's too much redundancy, and the expression is simple enough that's it's obvious at 1st glance what the single-char var is

  • @Sebastian-hg3xc
    @Sebastian-hg3xc Місяць тому

    I think the most important python habit I have is to write as little code as possible in python, because python is a programming language by mathematicians and nowadays data scientist for themselves, and not actual software developers.

  • @Richard-ck7sr
    @Richard-ck7sr Місяць тому

    Very good tips, thank you. It would be useful to copy/paste some of the code demonstrated, as I'm slow/bad at typing. :-)

  • @Pankaj-Verma-
    @Pankaj-Verma- 2 місяці тому

    Thanks.

  • @y2ksw1
    @y2ksw1 Місяць тому +1

    It took me only hours to code, but a lifetime to program.

  • @daveys
    @daveys 2 місяці тому

    Some good tips there, many thanks!
    I always wondered about the if __name__ == ‘__main__’: line, what was the real advantage in doing that, but you explained it really well.

    • @ThomasVWorm
      @ThomasVWorm 2 місяці тому +1

      The advantage is to support bad habits.

    • @daveys
      @daveys 2 місяці тому

      @@ThomasVWorm - as far as I now understand it, if you call the function from another program, it’ll not run anything in the __main__ section.

    • @ThomasVWorm
      @ThomasVWorm 2 місяці тому +2

      @@daveys no. The import statement executes all the code, which is why you do have functions at all, because it executes all the def-statements too.
      This all happens before you do call one of those functions.
      If the file is meant to be imported, it makes no sense at all to have code in the main body of file which you don't want to run.
      So with if __name__ ... you prevent code from being run which should not be there at all.

    • @daveys
      @daveys 2 місяці тому

      @@ThomasVWorm - Ahh, I get it…hence your comment about bad practice! Thanks!!

    • @DrDeuteron
      @DrDeuteron 2 місяці тому

      @@ThomasVWorm you're just no using it right.

  • @wonderfulworld1128
    @wonderfulworld1128 2 місяці тому

    Please make video how actually behind the scenes in python, series of memory allocation initiated after execution of any function, recursion function, closures, and decorators. I'm confusing whenever I visualizes all of this things in my mind.. Please make our foundation clear.

  • @williammcenaney1331
    @williammcenaney1331 2 місяці тому

    Thank you for your great videos about Python programming. Since I love functional programming, would you please tell us about Python's functional features, map and filter, for example?

    • @DrDeuteron
      @DrDeuteron 2 місяці тому

      try some itertools, though I don't know if that is formally functional.
      Don't forget lambda.

    • @williammcenaney1331
      @williammcenaney1331 2 місяці тому

      @@DrDeuteron Amazon sells some books about functional programming in Python, But Python isn't purely functional. It's object oriented. In a purely functional language, there are expressions instead of statements. To simulate looping, you need recursion.
      Since each thing is an expression in a purely functional language, each "if" expression needs an else clause, even when you wouldn't need one in a procedural language. That's because each expression must reduce to a value.
      So suppose I write this:
      if even n
      then n
      else n + 1
      Then the number will replace the "if," "then," and "else" expressions. And the computer will remember the number until your program terminates.

    • @DrDeuteron
      @DrDeuteron 2 місяці тому

      ​@@williammcenaney1331 week, if you're going to try, you'll need:
      sys.setrecursionlimit

  • @nezubn
    @nezubn Місяць тому

    what ide/editor are you using?

  • @RussellTeapot
    @RussellTeapot 12 днів тому

    Holy cow, didnt know about type annotations!

  • @hlubradio2318
    @hlubradio2318 Місяць тому

    I do appreciate list comprehension

  • @pylsur2024
    @pylsur2024 2 місяці тому

    Thank you for your video. Maybe a bit off-topic here, but how can I get the green run-arrow next to the line-number? It isn't here in my VS Code.

    • @Schaex1
      @Schaex1 Місяць тому +1

      This looks a lot more like IntelliJ than VS Code to me

    • @retagainez
      @retagainez 4 дні тому

      It is (maybe?) PyCharm, not VS Code. You might be able to get it with some VSCode extension, but I think Jetbrains has a much better developer experience.

  • @bollybigglo
    @bollybigglo Місяць тому

    For type annotations, you can also use a .pyi file.

  • @hikaritsumi2123
    @hikaritsumi2123 7 днів тому

    I am not a fan of list comprehension technique, back when I was just learning phthon I find it very hard to understand what is going on and people keep yapping that "But it's better!"
    Now that I have a job and the experience I find another problem with it, it can only do 1 thing and business logic really likes complicate thing

  • @nicospok
    @nicospok 11 днів тому

    is it an extension what says '1 usage', '2 usage' in the functions?

  • @astrobullivant5908
    @astrobullivant5908 2 місяці тому

    Thank you for posting. Just one comment:
    @4:57, you begin describing "big functions" with type annotations(also called type hints), but you describe type annotations afterwards in the next section. Shouldn't you change the order around to describe type annotations before you describe big functions?

    • @Indently
      @Indently  2 місяці тому

      Could have been a more clever approach, yes :)

  • @DariushTasdighi
    @DariushTasdighi 2 місяці тому

    Perfect

  • @ThomasVWorm
    @ThomasVWorm 2 місяці тому +1

    2:45 scripts, which are meant to be run, do live in a bin-folder, don't end with .py but with no extension at all for unix or eg. .bat on windows and they do provide a documentation which is accessed by the command line options -h and --help.
    This again is a bad habit since it urges the users to search all .py files for such a section in order to find the scripts which can be run. And if they find them, they still don't know, whether the code is only for testing.

  • @bernardcrnkovic3769
    @bernardcrnkovic3769 Місяць тому

    imo, large functions are not bad. make functions as big as necessary without repeating yourself... if you notice patterns/checks that are used more than once throughout the code, only then should you extract them in separate function...

  • @ophirn.m7817
    @ophirn.m7817 2 місяці тому

    I love you!
    I have been programming in python for around 7-8 years and been using all of those and it is so nice to know that I am not the only one🤝

  • @sultown4343
    @sultown4343 Місяць тому

    out of curiosity, why did you say the “psvm function we used to love”. I’m a student and we’ve worked a lot with Java - are things moving away from the language?

  • @carlpittenger
    @carlpittenger 2 місяці тому +5

    3:10 java mentioned, i'm triggered 😂

  • @JackDespero
    @JackDespero 2 місяці тому +2

    These are good tips for some cases and situations, but I wouldn't call them good python habits.

  • @somnvm37
    @somnvm37 2 місяці тому

    16:18 that's a somewhat new way of writting list comprehension for me
    i always thought it'd only work with
    [p if len(p) > 7 for p in people]

    • @senzmaki4890
      @senzmaki4890 2 місяці тому

      that syntax is incorrect

    • @AdamCallison
      @AdamCallison 2 місяці тому

      this is a much better way to make your program crash

  • @810602jay
    @810602jay 3 дні тому

    What is the IDE used in this video? Pycharm or VS code ? 🙏

  • @danielshamburger
    @danielshamburger 2 місяці тому

    I know this is just a quick example, but I'd argue a function like is_blacklisted or similar would be better than is_bob. You wouldn't want to add another function call for every person who is banned from the club.

  • @Robert-yw5ms
    @Robert-yw5ms 10 днів тому

    Incidentally 3 applies regardless of the language you're using.
    Just maybe reconsider passing booleans around. They're a very non-declarative data type.
    Edit: Actually I see you're making sure to call enter_club with has_id as a named parameter which also makes it declarative again.

  • @chrisw1462
    @chrisw1462 Місяць тому

    @6:22 Since AND is a shortcut operator, you need to rewrite that: return has_id AND age >= 21. If they don't have ID, they can't prove their age. So if has_id is false, the comparison age >= 21 is never checked. The way you wrote it, the comparison would be checked with no proof of age!! 🙂 But seriously, since your premise here is good Python habits, I thought this needed to be mentioned.

  • @thegothaur
    @thegothaur 2 місяці тому

    For number 1. if __name__ == __main__ is ment to be used in modules that should be run not for testing porpouses. You should test your code with unittest in separate module

    • @martin_hansen
      @martin_hansen 2 місяці тому

      Yes, in an ideal world where you also always have all the time you need to make perfect fully documented code.
      Here in the real world we need to prioritize stuff. So for code that is most likely only being used by myself, and maybe a few collegues, for a few tasks.
      I always put testing in the 'if main' section. The test cases in there also function as a minimum documentation on the intended use of that module.
      I do this because here in the real world, insisting on full fledged unit test and other "good practices", only means that test and doc is skipped entirely for such low use code.
      Sometimes such code do end up being more useful, and more used. And needs to be upgraded to production ready code (unit test etc) Ask your self "would I prefer to upgrade a module with test cases in the 'if main', or a module where test was done on command line on some unknown pc?"

    • @thegothaur
      @thegothaur 2 місяці тому

      @@martin_hansen I disagree wih you. if __name__ == "__main__" statement indicates that this module is ment to be used.
      And about "real world". I have only 3+ years of proffessional experience with python but in each project (but he last one) we had tests. lots of test. In fact there was much more code for test than for real functionality. It may look like unnecessary work but it is very helpfull and much needed in large projects. On the other hand, I'm working with quite small project without any tests and it is nightmare.
      PS. I understand that with your own project you do not unittest (I dont myself) because delivering functionality is more fun :)

    • @Indently
      @Indently  2 місяці тому

      I have no argument against people who extensively test their code, you guys are the true heroes who really go out of your way to make your apps reliable, and I respect it.
      For some of us though, when we are building modules, we tend to test functionality as we write it. The complete opposite of TDD. Forgetting those function calls in a module you created can be a headache if you don't use the "if name is equal to main" check.

    • @martin_hansen
      @martin_hansen 2 місяці тому +1

      If _name__ == "__main__"
      foo()
      Does NOT indicate module is ment to be run. It is the exact opposite.
      The whole reason of adding this condition is to shield the call to foo() from being called when it is imported by another module.
      If the module is intended to just be run and not imported, you should just put
      foo()
      So the 'if _name__ == "__main__"' statement tells me that this module was intended to be imported but can also be run.

    • @Indently
      @Indently  2 місяці тому +1

      I understand what you're thinking Martin, but if you add an "if name is equal to main check" anywhere in your code, it will tell anyone who sees the script that something was meant to be run directly. Whether it's just for personal testing purposes, or to prevent it from being executed when being imported. It tells whoever is reading it, that there is functionality that can be executed directly in that script.
      I would never run "foo()" out in the open like that. You will have to track that call down later if you forget about it when you are importing the module that contains it.

  • @alexsandrzhemanov5710
    @alexsandrzhemanov5710 2 місяці тому +1

    I'd leave if you said C#(or some DephiCase language). but Java or Haskell would intrigue me.

  • @mathieuletrone1249
    @mathieuletrone1249 2 місяці тому +1

    How do you configure pycharm to check types with mypy ?

    • @Indently
      @Indently  2 місяці тому

      There's an extension in the settings that you can install

  • @xevento8682
    @xevento8682 13 днів тому

    The big functions thing is a good practice yes, however the example wasn't necessarily that great. Specific functionality like that, which isn't ever used anywhere else doesn't need its own function. It really depends on how long the parent function is, i wouldn't have done this for the length of the example function.

  • @ErenMC_
    @ErenMC_ 9 днів тому

    I feel that list comprehensions are just too hard to understand, like the value which is being returned is written at the start and when you are reading it you think that 'what is p here?'

  • @xlerb_again_to_music7908
    @xlerb_again_to_music7908 2 місяці тому +1

    what is your code editor? I use Anaconda / Spyder, and do not see that in use here...

  • @coneryj
    @coneryj 2 місяці тому

    pretty good vid.
    Not a fan of the "is_bob" function as it has hard coded value in the function name without describing what it does.
    I would prefer something like is_blacklisted with a bliacklist: list[str] = ['bob']
    inside or someplace where it can be obtained.
    Now you don't need to refactor if the name is really "Robert"

    • @Indently
      @Indently  2 місяці тому

      is_blacklisted is a much better real world example. It was supposed to be an amusing example where in this world Bob was the only one that would ever be blacklisted.
      But yes, in real life, you'd probably have many more people blacklisted than just Bob :)

    • @coneryj
      @coneryj 2 місяці тому

      @@Indently agreed.. I know what you were doing and it was a good point. I was just throwing in some additional contribution.
      You'd be surprised (or maybe you wouldn't) at just how bad function naming and structure can be and how it can impact changes to program requirements

    • @Indently
      @Indently  2 місяці тому

      For sure :)

  • @littleturtle3289
    @littleturtle3289 29 днів тому

    We had a whole character background at 12:15, dude really needed to take that out of his chest.