5 Tips To Write Better Python Functions

Поділитися
Вставка
  • Опубліковано 5 чер 2024
  • In this video I’m going to be showing you 5 tips and tricks that can help you write better Python functions in 2024.
    Sphinx: www.sphinx-doc.org/en/master/...
    ▶ Become job-ready with Python:
    www.indently.io
    ▶ Follow me on Instagram:
    / indentlyreels
    00:00 Learning Python made simple
    00:05 Tip #1
    01:45 Tip #2
    06:32 Tip #3
    10:04 Tip #4
    12:31 Tip #5
    15:43 Your thoughts

КОМЕНТАРІ • 145

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

    1. raise NotImplementedError instead of "pass" or "..."
    2. always specify return types
    3. use docstrings for extra info
    4. force keyword args for complex functions with *,
    5. use *args to collect variable arguments

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

      thx, saved me 15 minutes

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

      thanks, 15 minutes saved

    • @user-iy6dt4xp5o
      @user-iy6dt4xp5o 2 місяці тому +3

      *1. raise NotImplementedError instead of …
      *EDIT: this was fixed*

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

      *args instead of *strings

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

      Not all heroes wear capes

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

    as a c/c++ enjoyer i must say that it warms my heart that specifying the return type not only is a thing, but a recommended practice

    • @vamastah1737
      @vamastah1737 Місяць тому +11

      I am a C/C++ enjoyer and I do not like that. If you need a statically typed language, you should just use one instead changing Python to resemble C++.

    • @hellNo116
      @hellNo116 Місяць тому +6

      @@vamastah1737 i don't want a statically typed python. i want to force typing on input variables and return.
      it just makes debugging developing and documentation easier. i have used python, but only in a project for my master (i don't count the projects in which you use python to do ai or image processing and similar things, i am talking about application development). i like the language. it is easy to work with. easy to prototype. it is a great language. however the amount of times that i have suffered debugging line 1003 on a random library because i was allowed to call a function with the wrong input variables is let's say not zero.
      having the ability to force the type of variables in when a function expect specific function from the object in the input is a good thing, that makes the code more readable

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

      @@hellNo116 well, true, but there are more issues like that in Python and they are solved in statically typed languages by simple syntax checking before actual run.
      Python got adopted to applications it was not designed in the first place and hence the issue.

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

      @@vamastah1737i will not argue on that. it is true python was not meant to be a application language.
      however it happened to be because of circumstances. and it is really strong and capable. so i don't know if we can simply ignore it. also its syntax and some other feature that are inherited to the language seem to be the favorites of many python programmers.
      all i am trying to say is that python has legs and it is not the worst language for what we are using it for.

    • @robosergTV
      @robosergTV 27 днів тому

      @@vamastah1737 no. Python with types is the best way to program.

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

    raise NotImplementedError("Too drunk to think this through atm")

    • @kaltaron1284
      @kaltaron1284 22 дні тому

      There's a German book called "Weniger schlecht programmieren" (How to program less badly) that has quite a few fun examples of useless comment. Not sure if there's an English version.

    • @JadeJuno
      @JadeJuno 8 днів тому

      Real.

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

    Most of the time i use an iterable instead of the *args and **kwargs thingy in those types of situations.I feel it's more readable. I used *args , **kwargs when i needed to pass a function and some of it's arguments to a class instance to execute while a method was sleeping .

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

      Do you mind sharing a snippet here regarding what you mean? I didn't quite understand, but am curious to see what it looks like!

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

      yes please I also curious about that thing how you use the iterable. ?

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

      ​ @Indently Basically I would rather use "strings : typing.Iterable[str]" instead of "*strings" because it's less complicated and I think it's more readable . As for the second part of my comment I just wanted to ramble about how I last used the *args thingy .Not actually relevant to the discussion..... I automated some browser game and i wanted to be able to do thing while the program was executing a "time.sleep" . So the easiest way to do it that came to my mind was "a="spU9INjHN " . And i generate those functions this way : b="7XDxKTXWN" .Links on "onlinegdb" because i have no idea how to link stuff on yt .

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

      It means I would rather use "strings :typing.Iterable[str]" instead of "*strings" because it is more readable in my opinion . As for the second part of my comment it's kind of irrelevant , i just wanted to talk about how i last used the feature . I automated some browser game and i wanted to do something while the code was executing a time.sleep . So i wrote this : oEOt6J0JM . And i generate the code this way az2r951Ss . The code snippet is hosted on onlinegdb , i dunno how to share links on yt.

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

      ​@@IndentlyI think @hriscuvalerica4814 want to say that its more readable when a function accept a list for example instead of accepting an infinite amount of arguments because it is more explicit for the user

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

    Since you didn't ask, here are my tips for functions:
    docstring for users
    comment for devs
    pass arguments as keywords (for devs--from Raymond Hettinger--If you don't know who that is, you're not a pystro)
    single point return for successful use-cases
    use guard clause to catch errors early and raise/return early
    minimize branches (cyclic complexity).
    only ONE purpose per function: break it down, use private helpers if needed) so devs never scroll to see the whole function.
    all functions should be PURE: if it depends on state or mutates parameters, make it a class method....and don't mutate someone else's state. only 'type(self) should mutate 'self's attributes.

    • @ziul123
      @ziul123 20 днів тому +2

      disagree with the "devs shouldn't have to scroll to read the whole function". It is much better to scroll a little and read the whole function, than to jump around the file trying to find the helper function implementations. Internal functionality should only be abstracted to another function if it is going to be used more than once. If not, it just makes the code harder to read.

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

    Excellent! 💯

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

    I must say I love your tutorial so many new concept I thought that never exist 👌🏽

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

    Those were some great tips. Thanks!

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

    I'm always trying to find more "pythonic" ways to do things since behavior is different in C or Java. Even a simple for loop isn't the same in Python it's a "for each" and so much easier to use than for(i==0,i

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

      It is not always the best idea to use a for-each approach. I developed on python for 2 years and this type of loops implies that you cannot use the full potential of a condition. For example: if you want to execute a for loop only on certain conditions you can't do that in python without declaring before or inside the loop an if statement. This could seem better in terms of readability but if you want efficient code this is not the best. I had to solve this problem with a function called takewhile that takes a predicate and the list of items, but calling a function everytime i need a value is not a good option if I already have all data

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

    Very useful. Thanks!

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

    join text function example is absolutely great. Thank you

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

    Great tutorial videos. You really get me thinking. My head hurts!

  • @7thAttempt
    @7thAttempt 2 місяці тому

    Excellent!

  • @Markadown
    @Markadown 23 дні тому

    As a beginner, this was great. Thank you.

  • @user-cx6rg6mr7d
    @user-cx6rg6mr7d Місяць тому +1

    thank you so much!

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

    Great vid. We need a video on naming things. So different case styles for variables, function names, classes etc, to be more descriptive in the names, and just common practices for naming things. So many people name things with the wrong case, a video would help clear them up 😊

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

      Pep8

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

      @@replikvltyoutube3727 but so are all of his other videos. Doesnt make a difference. A video form of ideas reaches more beginners then pep8

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

      @@replikvltyoutube3727 *a summary of PEP 8.

  • @ChrisJones-hv7mo
    @ChrisJones-hv7mo 2 місяці тому

    Good stuff.
    For docstring Sphinx conformant :param: or :return: statements I wouldn't just repeat the type hint you put in the def statement as it is generally redundant, and even if it wasn't the place that should go is in :type: or :rtype:. The only time you might want :type: or :rtype: there is if you want to add ",optional" just in case you didn't want to use the type hint typing.Optional[] in the def statement.
    Pycharm and for that matter Sphinx generated documentation picks everything up well if you have type hints in the def and ignore :type: + :rtype:.
    Oh, for up to date versions of Sphinx, at the end of the :param:, use for default values ", defaults to [DefaultParamVal]". The older syntax was something like (Default: ``'Default Value'``).
    I'm sure everyone can handle that, as we are all coping with how type hinting has changed from Python 3.6 to 3.12.

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

    Very nice 🙂

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

    My tips for passing parameters to functions:
    - like you said, use type annotations
    - if possible avoid passing/returning dictionaries of base types. Better use classes. In most cases this means docstrongs are not really necessary because the class name should convey the meaning.
    In your example, it could have been an dict[Index, User] where Index and User are classes. Or even a class "UserData" wrapping the dict.

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

    9:14
    I see no point in specifying types in docstrings when your function is already type annotated, not only is it redundant but it makes the codebase less maintainable since if the function's arguments and return types were to ever change you might fail to update the documentation

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

      some documentation generators cant infer types based on hints, and you have bigger issues if you forget to update docs accordingly, in my opinion.

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

      @@lydellackerman800 That's a really niche case for whoever uses the subpar docgen specifically.
      It's not so much to do with forgetting to update documentation but more so propagating bad practices, it's like specifying the types in documentation in a statically typed language it's just redundant, remember DRY.

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

      @@senzmaki4890thats a fair point. I was wrong

  • @rodelias9378
    @rodelias9378 21 день тому

    Good video! Thanks a lot

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

    Your videos are really helpful. As you are always stressing for annotations could you point me to any video of yours where you have discussed about the annotations of async await and other complex return type and variables. If you have not talked about it a new video on it would be great

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

    thanks

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

    I wish the ellipsis would raise NotImplementedError (the way ??? does in Scala) instead of effectively being a synonym for "pass" when outside slice context.

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

    You can avoid putting what a variable is into a docstring by creating aliases for even the simplest types. You can get away with just assigning types to a variable if you are on a version of Python that doesn't support some of the newer type aliasing methods):
    from typing import Tuple
    Vec2 = Tuple[int, int]
    You can go a bit further and say:
    Xint = Yint = int
    Vec2 = Tuple[Xint, Yint]
    Why do this? Well maybe you are working with a different convention. e.g. when working with output to the terminal you often have rows as the leading axis:
    Loc = Tuple[Yint, Xint]
    Now when an argument expects a Loc, you know which way around the values inside need to be. Loc and Vec2 are the same type, but you are signalling to the reader of the code their context.
    And if you ever change it, there's no docstring(s) to keep up to date and you can easily find all the places in the code that the change needs to be checked (provided you named the alias sensibly).

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

    Yesss, it's fundamental to add typing in Python, or as a matter of fact, in any programming language (yes including you Javascript :o)

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

    Nice

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

    Know args typing it's NOT saving time. Exemple : you know to pass a int, but which value can have ? Absolute ? maximun ?
    Return type... help for IDE but... can be the same problem that args if native type (int, str, dict, etc.).

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

    [ 11:04]:
    Why private cat video?
    Now me angry!
    Me want cat!

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

    I noticed that you have a codeium AI attached, right?
    Does it explain 400-500 lines of code or more than that?
    I haven't tried it yet.
    And is that enough for most of the cases or other AI are better?

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

    Hello, nice video!
    For the last function "joint_text", how do you type "*strings"? object , strings or maybe something in the typing library?

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

      generally when using this you don't type annotate it, but if you want to, i guess you can just type it as typing.Tuple[str]

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

      *strings: str (answer)

  • @user-su1wf3wz6c
    @user-su1wf3wz6c Місяць тому

    🔥

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

    I like to write all my functions as classes that define the call dunder; just makes it more explicit.

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

      word

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

      ​@@Indentlysentence

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

    When is it a good practice to put a slash after the arguments you want to pass instead of an asterisk?

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

      Slash means that the name of arguments after the slash don't matter. I'd use it for anywhere the names do not provide any meaning, like for example with mathematical functions: while the argument is typically named x, a, val, arg etc., this name is completely useless for the caller. exp(x=2) is much worse than simple exp(2)

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

      Thanks, @@vytah.

  • @AGENT_V-252
    @AGENT_V-252 Місяць тому +2

    What's the editor you using?

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

    Finally people are realising that a proper syntax with explicit variable types, return types, etc actually makes programming easy.

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

    Nice tips. Python is comment oriented language. What I mean is code should look like comments or easily readable. Extra commenting should be less. By looking at code, you should be able to make out what is happening.

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

      which is why you should never write a function that returns a complicated interface, unless it has a leading underbar in its name, and even then....

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

      Python is executable pseudocode. Same with Haskell.

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

    12:26 Yay

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

      It had to be made public eventually

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

    I feel silly asking this, and I'm sure the answer is obvious ... but I've searched high and low and can't find the answer: How did you get your editor to show the usage count next to the function def? Also, how did you get your VSCode layout to look like this (especially the split sidebar)? I see you are using a Mac - perhaps this is the difference? I am on Windows. Grateful for your help! :)

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

      That is not VSCode, it's PyCharm or IntelliJ Idea. I think the usages come default in that editor.

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

      Inlay hints on PyCharm

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

      Thanks. I found your setup video.

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

    Most of the time I get an analysis paralysis because of the docstrings.
    Here is a example. A function returns dict[int, str] (as in video). Why does it matter to duplicate the same ":return: dict[int, str]"? In my vision it clutters the code. Is there any value to do that duplication?
    Or, if function name is already self explanatory, why to paraphrase the same words which makes up the function name in the docstring?

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

      What's important is that you return something meaningful. dict[int, str] might have been a bad example :)

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

      @@Indently Sorry for using your example as my example. I understood your point about commenting.
      What bothers me more that I cant formulate a coherent rule of when documenting a function is redundant. Or, does it bring some kind of help somewhere I'm not aware of?

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

      @@Mefodii Documenting a function is never redundant. Think of it that way. You have a very simple function and you think it is obvious what it does, right? Well, from experience, to some people, it really isn't that obvious and they really do need that documentation in a language they are more accustomed to (beginners, usually). It also teaches them how to start documenting their own code as they read simple functions and progress to more difficult ones. Basically, you aren't documenting a function for yourself, but for others, who might not be on your level of coding knowledge.
      *P.S. Documenting variables is always important, even for you.
      User_info might be clear enough now, but if you come back to it some time later...
      @param user_info: Dictionary with personal information, example (example has to be valid):
      { name: Tony,
      age: 23,
      address: USA}
      is much clearer than no info at all and a debugging session. (For other people as well!)
      P.S.2. This now means that you have a lot of stuff to update if you change something...so as always, its about tradeoffs. In a team, it is usually very much worth it.

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

    Question why do you write users: dict[int, str] = {1: ‘bob’, 2: ‘jeff ’, 3: ‘tom’} when I think you could just write this users = {1: ‘bob’, 2: ‘jeff ’, 3: ‘tom’} I’m new to python btw

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

      He's using type hints. Lookup explicit typing for more in depth information. But by specifying the types within this dictionary you can gain af advantages. First. The code becomes easier you read. You explicitly stated what the types of variable will be, instead of letting python infer it at runtime and thus it never being mentioned directly in your code. Second, if you were to screw up later and try to pass a string into the dictionary key, (where an int was specified) a good modern IDE should warn you about it. Potentially saving debug time later.
      I'm probably missing more stuff but that's what comes to mind.

  • @kritsadinseekeaw5263
    @kritsadinseekeaw5263 18 днів тому

    How many vs code python extension? I like comment 1 usage.

  • @romy4romy4
    @romy4romy4 Місяць тому +4

    1. Disagree about pass. Using it is very helpful if you want to prepare a mocked business logics without skipping any required function which will be much more terrific if you lose something. Logic debugging sometimes very dufficult. So i would say do using pass ever. Searching by word pass is simple, but it impossible if you lose logic call because you go step by step implementation.

    • @kaltaron1284
      @kaltaron1284 22 дні тому +1

      Why not use mocks instead? That way you can separate what's ready and working and what's just for testing.

  • @PritamWaiba-vu1fj
    @PritamWaiba-vu1fj 2 місяці тому

    how to give type annotation for return self object in method?
    class MyClass:
    def func1(self) :
    return self

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

      def func1(self) -> MyClass:
      return self

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

      @@archardor3392 It gives not implemented error

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

    I'm learning English. I'd like to know where are you or where come from your accent. Please.
    Thanks a lot.

    • @vastabyss6496
      @vastabyss6496 22 дні тому

      His UA-cam profile says he's from Denmark if that helps

  • @rubix438
    @rubix438 14 днів тому

    What's this color scheme?

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

    Why not just using a Strongly typed language like C#, Swift instead ?! these stuff are always guarantied by the compiler then, and since they are compiled they run significantly faster!

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

    🥇🎉🎉🎉

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

    Thank you.

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

    You should use abstract method and ABC instead of NotImplementedErrors.

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

      Would be nice, but that's only valid if you're using an OOP approach.

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

    Can someone explain this:
    >>> def p(*v: str, s: int):
    ... print(s.join(v))
    ...
    >>> p("a", "5", s='/')
    a/5
    Why isn’t the type int for s enforced?

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

      It's type hints
      Just hints, they do not provide any contact over the actual variable type

    • @kaltaron1284
      @kaltaron1284 22 дні тому

      Type hints are just for static code analysis. If you want to perform real type checks and throw exceptions when they don't match, you have to do them yourself. Like using assertions or throwing exceptions when a type doesn't match.

    • @laytonjr6601
      @laytonjr6601 17 днів тому

      Type hints are the same as comments, they do nothing when you execute the code.
      If you're using a powerful IDE it'll warn you when the types don't match but it will execute anyway

  • @DanteMishima
    @DanteMishima 19 днів тому

    I will not do dot the return type thing, regardless how 'useful' people say it is

    • @Indently
      @Indently  19 днів тому +2

      I recommend not doing it because you don't find it beneficial for your own purposes. Otherwise not doing something just because people recommend it is a bit silly :)

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

    Can you explain the **kwargs thing?

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

      kwargs allows you to pass a variable number of arguments that you haven't explicitly defined in your code yet

    • @kaltaron1284
      @kaltaron1284 22 дні тому +1

      *args get transformed into tuples, **kwargs into a dict. As per usual you aren't allowed to use positional arguments after keyword arguments.

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

    If you pass a function and never implement it, did you even need it in the first place?

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

      He didn't mean that you never implement it, just that you can have defined several empty functions, for example to name them in the main function and have a global picture of the code in it, and after you write the code of each function independently to make them reusable. It is then possible to forget implementing one of the functions in the process, it is then useful to have the code tell you that when testing

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

      @@dragweb7725 When testing, won’t the expected value not be present because you passed the function and therefore the test would fail causing you to inspect the function causing the failed test?

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

      @@Nerdimo it's not that easy sometimes, I've seen functions using either "pass" or "..." in an SDK of my company, which in turn uses some third party APIs, and debugging that can get hard since there are many layers and you don't know what kind of error is gonna be raised (if any).

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

      @@juanjosefarina Aha, so it's really an issue as a code base grows larger and larger. I can see how that gets annoying. I've only used NotImplementedError for abstract classes, but I can see we're it's useful in general SWE.

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

    which code do you find clearer:
    A:
    numbers: dict[str: int] = {'one': 1, 'two': 2}
    B:
    numbers = dict(one=1, two=2)

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

      Well, considering A has an invalid type annotation "dict[str: int]", I'd have to select B in this case (if you're curious about how annotations work I recommend checking out the Mypy docs for correct typing :) ).

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

      @@Indently thx, but I'm secure af and only use 3.8 on the job. Higher version aren't approved so I can't check the newer features. Haven't had the time to get 3 on the to-be-replaced Mac at home, since my personal lib in 2x is huge.

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

      That's completely fair, if I had your certainty I'd probably also skip on annotations completely.

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

      @@Indently Well I use them in 3.8, just the nested ones aren't implemented. I think they are good if you have functiond that takes a custom class, but that really only happens when two classes are cooperating (dangers of inappropriate intimacy notwithstanding), since classes have method to work with their attributes. So far, I'm 30/70 on whether to use them with primitives.

    • @Oldclunker-ge5zp
      @Oldclunker-ge5zp 2 місяці тому

      Is there a way of declaring a type like the typedef in C ?
      E.g. typedef mytype1 dict[str: int];
      Then you could refer to mytype1 in all relevant places...

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

    for the last one, I think I prefer the code:
    >>>join_text = str.join
    it's more pythonic, since functions are 1st class, and: don't reinvent the wheel.

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

      That's absolutely fair, but as usual, my example was just for demonstration purposes.

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

    #1 Ctrl f pass later if this becomes an issue for you

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

    What ide is that

  • @DeVibe.
    @DeVibe. 9 днів тому

    You can write much better python functions using C/C++.

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

    "pro tip" comes across as bring the exact opposite.

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

    where was all that hiding from me all the time?

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

    not none but NoReturn if no retyrning