Python's Type Annotations DON'T Do What You THINK They Do

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ก.ค. 2024
  • I get a lot of comments regarding type annotations, what they are used for, and why anyone should use them. They also have a lot of misconceptions and a lot of developers treat them as dark magic. I will clarify everything you need to know regarding how to use them in this video!
    ▶ Become job-ready with Python:
    www.indently.io
    ▶ Follow me on Instagram:
    / indentlyreels
    00:00 Intro
    00:10 What are Type Annotations?
    01:29 Extra context
    02:40 Union Types
    03:05 Type Safety
    04:08 It speeds up your code
    04:28 When should we use them?
    06:59 My advice
    08:02 Outro

ความคิดเห็น • 76

  • @RedBearAK
    @RedBearAK ปีที่แล้ว +27

    Type hinting is very useful in code editors like VSCode, to stop it from being stupid and claiming it doesn’t know where a lot of attributes or methods come from. For the “Fruit” class example you may find it is helpful to add the type hint in other places where the class instance is used, like if the class instance of “Fruit()” is being passed to a function as an argument. That can help the code editor understand where the attributes and methods attached to that object are coming from, when you use them inside the function. Otherwise it can’t tell that the argument parameter is going to be of type “Fruit” when it is passed to the function. On the other hand, simply creating the class instance from “Fruit()” should be sufficient without type hinting until you go into a different namespace, like the function example.

  • @RedShipsofSpainAgain
    @RedShipsofSpainAgain ปีที่แล้ว +9

    7:38 "I'm always split about which approach to take." That was a great unintentional pun: banana...split...amirite?

  • @geeky.pythoner
    @geeky.pythoner ปีที่แล้ว +17

    The content of this channel is a treasure 🖤

  • @codygenius3723
    @codygenius3723 11 หลายเดือนก่อน +3

    aye thanks man, I recently got your course, and I'm still somewhat new to programming and python in general, but I had about 4 months experience when I started your course. however, the way you code, it looked like a different language entirely, I genuinely couldn't tell what I was looking at, as I've never seen somewhat code in such a clean, and experienced way, I had to do a bunch of solo research to figure out half the stuff you programmed and made, more beginner friendly videos like this are helpful.

  • @loverboykimi
    @loverboykimi ปีที่แล้ว +2

    I only see this with you and i am trying to get used to do it. Still in progress :) . It makes your codes very clean and readable, I like your approach.

  • @deepaksoni77460
    @deepaksoni77460 ปีที่แล้ว +2

    I'm such a huge fan of Python. Absolutely love each of your videos brother! 🎉❤

  • @spaghettiking653
    @spaghettiking653 10 หลายเดือนก่อน +2

    That method of always using type annotations is quite clever, I often omit it for "obvious" use cases (such as assigning a string, int, float, or instantiated object), but sometimes you'll make mistakes if you take it too far. I say for assigning values like the above cases, no annotation is fine, but any complex expression should have one if it doesn't document itself perfectly...

  • @ChrisHalden007
    @ChrisHalden007 3 หลายเดือนก่อน

    Great video. Thanks

  • @jlopez0941
    @jlopez0941 8 หลายเดือนก่อน +2

    A pragmatic approach would be to use it wherever it's not inferred. For example, playing around with VS code, I made a class Dog with method bark. Initialising snoopy = Dog() and hovering over snoopy shows that the editor does, in fact, infer that snoppy is a Dog, and using dot notation does show the bark method as an option. For me it all comes down to the question, what do I want from type hints and it's to speed up development by showing me the available methods and to catch errors before running the code.

  • @dk-ww3kp
    @dk-ww3kp ปีที่แล้ว

    Very nice and informative video👏🔥

  • @davidznidarsic5497
    @davidznidarsic5497 10 หลายเดือนก่อน +2

    banana = Fruit() might be in the first version of your code, but manual editing, global find/replace, and refactoring/renaming might change the right-hand side so that a type annotation on banana in the first place would be important

  • @Santa9204
    @Santa9204 10 หลายเดือนก่อน

    Works great when you use it in combination with mypy plugin. e.g.: add annotation in function declaration and mypy will tell you whether you return the right type or not.

  • @JohnL2112
    @JohnL2112 11 หลายเดือนก่อน

    I am learning python waaaay after the 2->3 transition, and I gotta say i like these “its dynamically typed, but here don’t confuse yourself” features, and probably would have been way more confused before they existed

  • @elevendarter112
    @elevendarter112 ปีที่แล้ว

    I'm one of those who asked about these hints in the past. Cheers for this video. Anyway, since I'm not that advanced in other languages where it's often compulsory, I think it's a bit messy and unneccessary. I look at it similarly as you describe your dilemma about the "Fruit banana" case. While this "bananagate" is the only case for you where you think it's messy, for me it's messy in all cases. Also, I've checked it now in VS Code and I get the hints regardless whether I specified the type or not. I tried to add the dot behind the variable "print(word.)" and the help popped out in both cases.
    word = "hello"
    print(word)
    word2: str = "hello2"
    print(word2)
    I see you use pycharm...ok, now I've checked it in pycharm and it works the same as in vs code. Your video kinda suggests that it doesn't. If you only meant it like the example of what can be seen in the functions than ok. In functions I do see the difference.
    Now I know more about it and I get it why someone uses it and maybe one day I find the reason too... Thanks.

    • @Indently
      @Indently  ปีที่แล้ว +1

      There are cases such as the ones you mentioned that it will work regardless, but try it with function parametres.

  • @HitBoxMaster
    @HitBoxMaster ปีที่แล้ว +12

    UNFORTUNATELY they don't do what we think they do lol. I would love for Python to have an opt-in system for static typing, implementing faster interpretation times

  • @olivierbouchez9150
    @olivierbouchez9150 5 หลายเดือนก่อน

    My view here, type annotation, is a good practice, because it provides a Clea description of what the function is supposed to accept. It s mainly a specification. There a tool like as pylint and editor like visual studio code will help to emphasise type issue. For strict typing my recommendation is to use pydantic. Pydantic implement type verification, even more real constraints. It s a way to make python more similar to a typed language with the power of python libraries.

  • @freepythoncode
    @freepythoncode ปีที่แล้ว

    Thank you so much 🙂❤

  • @69k_gold
    @69k_gold 4 หลายเดือนก่อน +1

    I write single responsibility functions and only annotate function parameters and return types. It was enough, because I've never seen a variable being any type ever in my code where it shouldn't be.

  • @alex_romancino
    @alex_romancino ปีที่แล้ว +2

    Personally I only use type annotations in functions to have hints from vscode and sometimes just to be very explicit

  • @user-co9rc1kp7p
    @user-co9rc1kp7p 4 หลายเดือนก่อน

    There could be some information about pydantic. Absolutely fantastic lib based on type checking

  • @khizaransari3857
    @khizaransari3857 ปีที่แล้ว

    Can you please make a video on how to use ravel() function ?

  • @grzegorzryznar5101
    @grzegorzryznar5101 ปีที่แล้ว +2

    Have you tried Mojo? :) Language which suppose to be superset of Python with strong typing :)

  • @Sinke_100
    @Sinke_100 ปีที่แล้ว

    Ah, that's why you do it, I was bashing you so much about it, but I guess makes sense, I mostly use Idle for simple projects, so I don't need it, I would try this in vs code though

    • @Sinke_100
      @Sinke_100 ปีที่แล้ว

      @@0neMadGypsy I really like your way of looking at things, I will try it out of curiositty, he uses py charm, so I wanna see how vs code handles it, but I agree with you 💯%, altought sometimes is faster that editor holds your hand, I prefer it the hard way, you learn and memorise alot more, sometimes vs code is handy like with prettify so you can see jsons structures better

  • @JonSnyderfudge
    @JonSnyderfudge 11 หลายเดือนก่อน

    If you are using a full fledged IDE, like Pycharm, it is usually smart enough to figure out the type based on the context of how you are using the variables. So doing something like 'banana: Fruit = Fruit()' is pointless or even typing an assignment for something 'banana: Fruit = get_fruit("banana")' is pointless if the function has a return type hinted.
    However it is great to type hint when you are using a library where the developer wasn't kind enough to type their functions :)

  • @Lvh1
    @Lvh1 ปีที่แล้ว +4

    The only places I place them is when the editor cannot infer the type, so function arguments, or variables that store the return value of an untyped function. That gives maximum type safety with minimal effort.

    • @DestopLine
      @DestopLine 5 หลายเดือนก่อน

      That and empty sequences are the only valid case where I think type annotations should be used. If the editor can infer the type by itself, adding the type annotation just makes it bloated, distracting and harder to read.

  • @ShivanshKaran
    @ShivanshKaran 10 หลายเดือนก่อน

    its always good to use type annotations. Four example your banana case, well banana might not always mean a fruit.

  • @cetilly
    @cetilly 11 หลายเดือนก่อน

    I always use them, even if the assignment seems redundant

  • @robertbrummayer4908
    @robertbrummayer4908 10 หลายเดือนก่อน

    Nice video, however you should have mentioned type checkers such as mypy. I consider static type checking to be the main benefit and much more important than improved autocompletion in your IDE.

    • @Indently
      @Indently  10 หลายเดือนก่อน +1

      You’re right, I’m actually making a free 3 hour course that talks about mypy as well since there’s a lot that pycharm doesn’t catch :)

  • @fcnealvillangca7943
    @fcnealvillangca7943 4 หลายเดือนก่อน

    This maybe intimidating to see from people who haven't experienced typing or people started programming using python. But this will make your life easy working with the large team

  • @deathdogg0
    @deathdogg0 4 หลายเดือนก่อน

    I straight up avoided python for years because of the typing issues. I always prefer languages like go, rust, swift, etc, not only because of their performance, but also because of the type systems. Now that I found out about typing in python I'm willing to at least give it a chance for projects I need done fast

  • @Andrumen01
    @Andrumen01 ปีที่แล้ว +5

    On your 'Fruit' dilemma. I believe that the key is consistency and sometimes the editor can't infer the type unless you are explicit (happens to me with lists and iterables in Pycharm, it's annoying) -> keep the annotations even if it feels silly.

  • @arkie87
    @arkie87 5 หลายเดือนก่อน

    I think i would prefer type: name = .... vs. name: type = ....
    it is more consistent with other languages e.g. int x = 1 --> int: x = 1 and it also makes it easier to ignore the type if it doesnt matter

  • @Jdaucfqluoess
    @Jdaucfqluoess 4 หลายเดือนก่อน

    Do you always assign Fruit() to the variable banana straight away ? maybe in some situations you want to declare your variable in the first lines of code and later on you will assign it its value Fruit("some arguments that were not available at first"). In this case it's useful to give the hint.
    banana : Fruit
    ...
    some code
    ...
    banana=Fruit()

  • @INGIE32
    @INGIE32 ปีที่แล้ว +2

    I also love type annotations, but with modules like numpy they are just so painful to work with

    • @Andrumen01
      @Andrumen01 ปีที่แล้ว

      The length of the annotations can be quite long...true it is, but otherwise it's straight forward, use the class of the object. For example, for numpy arrays:
      Incorrect: np.array
      Correct: np.ndarray
      You just have to dig in a little deeper.

    • @INGIE32
      @INGIE32 ปีที่แล้ว

      @@Andrumen01 Ye I tried that, but it keeps raising warnings.

    • @Andrumen01
      @Andrumen01 ปีที่แล้ว

      @@INGIE32 Are you using Pycharm?
      You might have to write something like:
      var = np.array([1,2,3]) # type: np.ndarray
      Does that work?

  • @seppmaier4858
    @seppmaier4858 5 หลายเดือนก่อน

    I think it's a shame that this doesn't raise an exception:
    text: int = 'hello'
    Is it possible to get python to abort with an error in such a case?

  • @3komma141592
    @3komma141592 ปีที่แล้ว +1

    Good entry level video, but why don't you mention static type checkers (mypy, pyre, pytype) if you are talking about type safety?

    • @EnzoSantos
      @EnzoSantos 10 หลายเดือนก่อน

      numpy???????

    • @3komma141592
      @3komma141592 10 หลายเดือนก่อน

      @@EnzoSantos sorry, I meant mymy, not numpy

  • @darcash1738
    @darcash1738 3 หลายเดือนก่อน

    yeah it doesnt seem to highlight it for types where you can have multiple data types that arent specified exactly like tuples:
    # Highlighted in Pycharm IDE:
    a: int = 'hello'
    b: str = 99
    c: dict[str, str] = {1: 1, 2: 2, 3: 3, 4: 4}
    d: dict = {1, 2, 3} # should be set or set[int]
    e: str = Something() # Correctly recognized custom class as not str
    f: list[str] = [1, 1, 1] # Should be list[int]
    g: tuple[int] = (1, 1, 1) # Should be list[int, int, int]. must be exact
    # Works fine, as expected:
    h: tuple[str, str, str] = ('bonjour', 'hi', 'world')
    # Not caught by the editor when mixed
    j: list[str] = [1, 1, ''] # Allows it even tho not [str | int]
    k: list[list] = [1, 1, [5]] # Same here, so long as one element adheres to it. should be [list | int]
    l: dict[str, str] = {1: "", "": 2, 3: 3, 4: 4} # Not a single one follows format, but str key and str val both exist
    m: set[str] = {1, 2, ''}

  • @memes_gbc674
    @memes_gbc674 ปีที่แล้ว +2

    you use type annotation because it self documents your code, i use type annotations because it makes me look smart
    we are not the same

  • @RedShipsofSpainAgain
    @RedShipsofSpainAgain ปีที่แล้ว

    And regarding your debate on class: Fruit =Fruit()
    Vs
    Class Fruit()
    I think the key is to just be consistent in your codebase. If you are using type annotations when declaring and initializing a variable, then do so, even when declaring a class object.

    • @Indently
      @Indently  ปีที่แล้ว +1

      I agree with the consistency approach, but even so, I feel wrong if I annotate banana: Fruit, and I feel wrong if I don't ahaha.

    • @RedShipsofSpainAgain
      @RedShipsofSpainAgain ปีที่แล้ว

      @Indently it's a catch-22! I guess the answer is we should all switch to a statically typed language. I love Python more than chocolate, but with a few modifications like incorporating static typing (and the whole GIL of course), it could be the definitive "best" language, as opposed to an excellent language that has a few shortcomings.

  • @LuvxJacqu4li8e
    @LuvxJacqu4li8e ปีที่แล้ว

    Great

  • @brhoom.h
    @brhoom.h ปีที่แล้ว

    We want a video about mojo lang plz

  • @stellazarei7996
    @stellazarei7996 11 หลายเดือนก่อน

    Typically not a fan of Python for this reason so I’m glad to see the there are advocates for making types explicit

  • @qwerty_qwerty
    @qwerty_qwerty ปีที่แล้ว

    Isn't this a reupload?

  • @braydenmchan
    @braydenmchan ปีที่แล้ว

    I come from Java and I would prefer `banana = Fruit()`. I think that it's unnecessary to type a variable if it's type is easily known from the right side of the equals. If, for example, you're calling `"hello world".split(" ")` then you could use a type annotation because it may not be completely clear what that function does (This is a simple example). This is what I do in my Kotlin and C# programs and it works for me. In the end, you should just do what you are most comfortable with and stick with it. Consistency is usually the best policy 😂

  • @lizandro_mendoza
    @lizandro_mendoza ปีที่แล้ว +2

    The arrow return annotation is also useful

  • @HansLemurson
    @HansLemurson 7 หลายเดือนก่อน

    Help, I have studied too much Java...
    FruitList bananas = new FruitList(Banana);

  • @Simon-yf7fo
    @Simon-yf7fo ปีที่แล้ว +32

    I really like Python but the type system with the type annotations is just a joke.

    • @fcnealvillangca7943
      @fcnealvillangca7943 4 หลายเดือนก่อน +5

      What? It's just type checking and very useful for working with large team. You can ignore it unlike if the project is made of typescript.

    • @datoubi
      @datoubi 4 หลายเดือนก่อน +1

      Python is a joke, too. I wish I wouldn't have to use it and just use Typescript

    • @nidavelliir
      @nidavelliir 2 หลายเดือนก่อน +1

      @@datoubi typescript is a worse joke

  • @davidm.bm01
    @davidm.bm01 7 หลายเดือนก่อน

    You forget the generic alias

  • @leonpasternak3844
    @leonpasternak3844 ปีที่แล้ว +3

    fruit Fruit = new Fruit();
    Java is awesome.

    • @pharoah327
      @pharoah327 ปีที่แล้ว +1

      How about C# where you can put "Fruit fruit = new();" no redundancy at all! Or you can use "var fruit = new Fruit();". You decide where the type "Fruit" should go but you don't need to ever specify it twice in the same line.

    • @maciejzettt
      @maciejzettt ปีที่แล้ว +3

      Actually
      Fruit fruit = new Fruit();
      😅 types come before identifiers

    • @maciejzettt
      @maciejzettt ปีที่แล้ว +1

      ​@@pharoah327 I like this feature a lot

    • @memes_gbc674
      @memes_gbc674 ปีที่แล้ว

      ​@@pharoah327 C# is literally java but not 30 years old

    • @pharoah327
      @pharoah327 ปีที่แล้ว

      @@memes_gbc674 oh how cute. Someone who still (in 2023) thinks that C# is just Java. Do yourself a favor and actually learn C#. I find that the only people ignorant enough to claim that C# and Java are the same are the ones that either don't know Java, don't know C# or don't know either. Take it from someone who has used them both in a professional context for over a decade now. They are NOT the same language. Even the creator of C#, Anders Hejlsberg, said that C# is closer to C++ than Java and that was in the very early days of C#. At this point C# is far, far different from both Java and C++. Maybe you are just trolling, but if you aren't and you legitimately believe what you say, then please do yourself a favor and educate yourself.

  • @b857
    @b857 ปีที่แล้ว

    i would typehint banana, just to be consistent

  • @mohanabavi
    @mohanabavi ปีที่แล้ว +2

    You could have added some minutes on usage of mypy to check typing.

  • @peeedurr
    @peeedurr ปีที่แล้ว

    A bit of clarification; be careful when you say things like "Python doesn't know ..." when what you actually mean is "my Smart editor, which understands a bit of Python, doesn't know"

  • @HoSza1
    @HoSza1 ปีที่แล้ว

    Do you think that what I think is what you think that I think? Python annotations do exactly what I think they do.

  • @falklumo
    @falklumo 3 หลายเดือนก่อน

    Not like Java!
    banana: fruit = Fruit()
    does not look like Java, which is:
    var banana = new Fruit();
    The difference though is that the Java line still enforces type, both at run time and in the editor.
    In a less cluttered language like Python or Java, one would just write though:
    Fruit banana
    or
    Fruit banana, apple, tomato
    to get default-initialized objects.

  • @mage1over137
    @mage1over137 11 หลายเดือนก่อน

    You should always use type annotations no matter what. You'll write less bugs and you can use doc strings to give important information about the class.