Check out Hostinger's Black Friday deals here: www.hostinger.com/arjancodes. And don't forget to use coupon ARJANCODES for an extra 10% off!
@benizakson264 Жыл бұрын
'Generic type' was my nickname in highschool
@vaidehikumar655 Жыл бұрын
You could then become anyone 😉
@vee.h Жыл бұрын
😂
@marouanebenmoussa12898 ай бұрын
Python team following Go typing system and I AM LOVING IT, we can get GO and Python to work the same way LETS GOO
@wizardfix8 ай бұрын
This is a very clear and useful introduction to Python 3.12 typing. It has primed me to dive into the docs. Thank you!
@ArjanCodes8 ай бұрын
Glad the content motivated you!
@IvanIvanov-dk6sm9 ай бұрын
I was googling 3 days to understand how to create properly custom types. How to type hint my function/class for using particular class or its subclasses (ancestors). Because type[Baseclass] is not what i really need. And thanks to the video, now i understand that i have to create my custom type with TypeVar and bounding arg to limit the ancestors. Thanks !
@ArjanCodes9 ай бұрын
I'm glad the video was helpful, Ivan!
@MateHegyhati Жыл бұрын
Thanks for the update, this change is welcome. Also, Python starts to look more and more like C++ 😀One note: in the video you often say "you can" or "you can't", or something along those lines. If I'm not mistaken, you always "can", as annotations are still just for the IDE + SCA not for runtime. But that is maybe not as clear for people learning the language. (And I assume your channel rightfully attracts many beginners) So maybe clarifying that in each typing related video independently from precious ones could be beneficial. Just a humble suggestion, and thank you for the update again.
@yyyy-uv3po11 ай бұрын
And C++ looks more and more like Python 😊 I see it as a win-win
@MateHegyhati11 ай бұрын
@@yyyy-uv3po do we converge to THE programming language?! 😀 Just kidding, Uncle Bob presentation came to my mind. Regardless. Where do you see C++ becoming more and more like Python? (Honest curiosity, not mocking)
@yyyy-uv3po11 ай бұрын
@@MateHegyhati The for() loop, the ability to return several parameters and unpack them like in Python, span gives a bytes vibe, optional gives a None-like value, etc In general, I find that my C++ code reads more and more like plain English, and they managed to do that with very little overhead IMO.
@MateHegyhati10 ай бұрын
@@yyyy-uv3po Hm... I never felt those to be "Pythonish ", maybe because I learned them before familiarizing with Python. For me "and/or" is what comes to mind in that regard.
@uszr1 Жыл бұрын
Thank you for the excellent presentation and professionalism. You are the best IT blogger on KZbin!
@ArjanCodes Жыл бұрын
I appreciate the sentiment! Thank you so much.
@Padancyo3 ай бұрын
Where the generic type variables shine is, for example, when defining higher-order functions, or functions that return "higher-order" types, such as generators; programming languages that allow you to specify the relations between types in these situations are few. In larger code bases, generic types are a kind of documentation of what to expect from an interface. I love them.
@illiaavdiienko8177 Жыл бұрын
you've finally clearly and easily explained to me what generic is, God bless you
@yandelyano Жыл бұрын
Could you explain the After.py?
@ArjanCodes Жыл бұрын
Glad you enjoyed the content!
@lukekurlandski7653 Жыл бұрын
This is great. If possible, I would like to see more advanced concepts introduced in videos like this, eg, connect it to type theory if possible :)
@munzutai Жыл бұрын
Can you make a continuation of this video about TypeVarTuples and paramspec? I had a little more trouble understanding these.
@dankprole7884 Жыл бұрын
Great video, thanks! It looks like inheritance in this case means "uses an X" instead of "is an X"? Can't wait to use the new syntax once all my dependencies catch up to 3.12.
@ArjanCodes Жыл бұрын
Thank you! Conceptually, generics are not inheritance. This is also why the pre-3.12 syntax of needing to inherit from a Generic class is confusing. Generic means that the class (or function) is built around one or more types that you only specify when you actually use the class or function.
@sseymour1978 Жыл бұрын
What code completion tool is that ?
@prinsniels Жыл бұрын
Fun to see how similar scala 3 and python syntax are getting. 😂 Thnxs for the clear explanation
@hansaschauer15 Жыл бұрын
I started using type annotations less than a year ago (despite using python since the last millennium), and I LOVE IT. To be honest, one of the reasons I love it is that type annotations do not force me to behave, but it makes it so useful to behave. And generics are phantastics: It is simply fun to carry a concept to the meta-level. For an educational plotting tool which I've written in the last days (called schulplots), I first forgot to turn on type checks in my IDE. Bad idea. I had so many stupid errors -- I've almost forgotten how cumbersome it is to write non-trivial code without type checking turned on. Just today, I stumbled into a situation where I was almost forced to turn off type checks in my IDE: I derived a class from a dataclass, and pylance did not understand that the derived class had all the stuff which the parent also had. But there came the @dataclass_transform decorator (which is available in Python 3.11, but you can quite easily mock it for older versions on import errors). And voila: Nothing red in my IDE.
@quillaja Жыл бұрын
Although, if you turn on type checking and are using a package like pandas, your whole code base explodes with red squiggles even though everything is totally fine. I usually leave it off because of that, unfortunately.
@liquiddddd Жыл бұрын
honestly I couldn't disgree more. A developer that needs type hints to understand it's own code, doesn't know what he/she is coding. And a developer that in joining the team will soon enough become 'the developer that is developing that code'. So the window of opportunity for type-hints to be useful is rather limited, and applies only to new-comers of a team with a relatively large code-base to maintain, and that's only for a couple of months, until that new person has everything fallen onto place.
@avimir880510 ай бұрын
@@liquiddddd oh yeah, my memory exists with only one purpose to remember every function I've written. 😂
@liquiddddd10 ай бұрын
@@avimir8805 oh yeah, and type hints DEFINITELY allows one to have no memory whatsoever of it’s own code. 🤣
@blanky_nap5 ай бұрын
I finally understood genetics in python after I started learning Rust
@jan.kowalski11 ай бұрын
It's nice that in Python types are not a religious beings but just another form of communication. I give as an example usage of types in Pydantic and FastAPI where using them, is just a natural way of solution creation process and in return you will have a free validation, value coercion and many more niceties. I do agree with you, that in Python types are opportunistic. Opportunistic is good in programming.
@grimonce Жыл бұрын
I used hostinger a long long time ago... its good experience
@aztecGin11 ай бұрын
Thank you Arjan, I wanted to spend my Saturday with clean the house and do some sports. Now I'll code instead. You always make me willing to work on my pet projekt :D
@ArjanCodes11 ай бұрын
You're welcome / I'm sorry? One of the two ahah! Thank you for the support :)
@goncalorodrigues19647 ай бұрын
The real upshot of generics in python: if you are stuck with using python, then they are useful. But if you can choose any other programming language, then choose a properly statically typed programming language, like Haskell say.
@buchi8449 Жыл бұрын
"Because a coffee machine is not a vehicle." Could you please try with Toaster class, whose instances often fly? "Do you use generic types in your code?" If we are making a tool, like a library or a framework, for making software, it is worth spending time to declare precise type specifications using generics. As clearly explained in the video, generic type is a great tool for reusability. In other words, we have less chance to use generic types when reusability is not a goal.
@quillaja Жыл бұрын
Interesting that they didn't use [V: Car | Boat] syntax, since it's more similar to the way you specify multiple types that are valid for function parameters.
@matchashining7300 Жыл бұрын
[V: Car | Boat] will allow values like [car1, car2, boat1, car3] [V: (Car, Boat)] will only allow a list with elements of the same type
@quillaja Жыл бұрын
@@matchashining7300 ah, thanks for the clarification. I was thinking the generic would be allowed to be only an object of car or boat, not also a list of car or boat.
@MrAlex160111 ай бұрын
Nice video as always @arjan. Since you‘re a type junkie - how do you think about mypy? Maybe it‘s worth making a video about it? :)
@PedigreeGuitars Жыл бұрын
Love this! Arjen how would you define a numpy array of objects (class instances)? would you import from numpy.typing?
@Geza_Molnar_9 ай бұрын
Please, be a type junkie! (and doc junkie, too) Good explanation, that's the reason I come back regularly. Although, this time, it was tooo muuuch aaad.
@vxsniffer6 ай бұрын
no doubt, your Python vids rises up YT's average level ;-)
@ArjanCodes6 ай бұрын
Thank you for the compliment!
@georgikostov698211 ай бұрын
Very good content - thank you!
@ArjanCodes11 ай бұрын
Glad you enjoyed it!
@ButchCassidyAndSundanceKid Жыл бұрын
Thank you Arjan. I've cleared in my head now how to use TypeVar.
@ArjanCodes Жыл бұрын
I'm glad the video helped!
@ButchCassidyAndSundanceKid Жыл бұрын
@@ArjanCodes Hi Arjan, I'm a follower of your channel and I eagerly wait for your new video every friday and you've taught me the right way to write python code which saves me a lot of time go thru' the books. Thanks. Adam
@chiemerieokoro303811 ай бұрын
Please, can you cover descriptors?
@rainzeewang Жыл бұрын
im so into typing hints on python
@bramble-east Жыл бұрын
Box[T] is one of the ways to solve type variance issues when working with generics, when T is used as both input and output of a generic function. So I would not call the Box[T] useless, more like "niche".
@grzegorzbajson3897 Жыл бұрын
@ArjanCodes Could you tell which plugin do you use for AI assistance, please?
@gokulyc Жыл бұрын
Good explanation, Liked the new feature in python. Kudos 🎉 code link?
@d_b_ Жыл бұрын
Watching this I bounce back and forth between "I am a bad dev because I don't write such clean code" and "All this to make some squiggly lines go away..."
@tranthanhbao9978 Жыл бұрын
firstly , great video as always, super cool and good explanation . Secondly, could we have another video about upper bound type ? That example at 12:30 ,, that is so java thing (nominal type , asking who is it before what it can do) , could we make another example with duck-typing with protocol and upper bound ? that would be great .
@DS-tj2tu Жыл бұрын
Thank you
@macong121711 ай бұрын
Does anyone know what is the shortcut to trigger the type import hint at 3:01 ? Thanks in advance! 🙏 Edit: Closest I can get is `Ctrl/Cmd + .`, but that still looks different 😅
@dinartd11 ай бұрын
Is this autocompletion of the code done by CoPilot or is it another auto complete extension?
@Janninatore Жыл бұрын
What are you using to generate the code from comments etc?
@ArjanCodes Жыл бұрын
GitHub Copilot.
@dmytrokorbanytskyi1586 Жыл бұрын
great overview, thank you! I love the changes.
@ArjanCodes Жыл бұрын
Thank you for the kind words! :)
@andrews87338 ай бұрын
So generic classes are covariant by default? Can you define invariance/contravariance with the new syntax?
@SonuRaj-er1hn Жыл бұрын
Hey which videos editors you are using. And can you make video on how to making reels thanks!!
@ArjanCodes Жыл бұрын
His info is in the description of the video!
@francoisfournier6213 Жыл бұрын
Thanks, really useful information
@ArjanCodes Жыл бұрын
You’re welcome!
@VincentSaelzler Жыл бұрын
The trap I fall into with generic functions is when two object types need to be processed SLIGHTLY differently. That results in small, hard-to-find sections of code within the generic function having to perform runtime type checking of "if type is A then do X, if type is B then do Y". At that point I start wondering if two separate functions would be more clear, even if the code of them is mostly identical.
@leif_p Жыл бұрын
If you can isolate the differences into methods on the types, then you can use the upper bounds shown in the video to ensure you have those methods on objects passed to your function. Or you could turn the function into a method on the superclass for a fully OO approach. Or two separate functions, as you said. Sometimes code doesn't need to be generic.
@liquiddddd Жыл бұрын
wait... how does code complete in 2:00 is working? Is it base on the docstring?
@yash1152 Жыл бұрын
1:58 is that pair autoprogramming?
@rezwhap Жыл бұрын
@ArjanCodes I love your videos, but I think it would be better to turn off the AI code completion. I find it quite distracting seeing all the corrections. You are fast enough at typing what you want😊
@_baco Жыл бұрын
Now, update the Monadic example from last week using the new generics 😝
@Erwipro11 ай бұрын
14:46 wait, you're saying we don't need a coffee machine?
@oida100008 ай бұрын
Wouldn't Any not be a more usefull anonation for something like elements at even/odd indicies? Because for me list[T] would indicated, it does not matter what the type is but it must be consistent, but what if it isn't, f.e. you have ints, floats and strings. I know Python allows piping up list[Any] seems much cleaner then list[int|float|str|...]?
@sabarathiago Жыл бұрын
nice video!
@ArjanCodes Жыл бұрын
Thank you! Cheers!
@PippyPappyPatterson Жыл бұрын
That generic type upper bound pattern is so cumbersome. Protocols/interfaces/traits all do that in a way cleaner way.
@viddeshk80203 ай бұрын
I see generic type every where. Strong type settings are indeed important.
@tedlazar Жыл бұрын
You can achieve the same by using list instead of list[T]
@ArjanCodes Жыл бұрын
No, you can’t. By using list without the generic type you lose the type relationship. So for a function that gets a list and returns a list, there’s no guarantee that those lists have the same type of elements. The function could accept a list of integers and return a list of strings for all we know. With generic types, you avoid that problem.
@tedlazar Жыл бұрын
@@ArjanCodes This is totally correct if you care about type of elements. In your example you just did list manipulation ignoring type of elements.
@ArjanCodes Жыл бұрын
The point is that the distinction is important. Process_elements should return a list containing the same types of elements as the input list. Without using generic types, you can’t express that.
@QuintinMassey Жыл бұрын
I wonder what exactly is happening underneath to accommodate generic types. If int and strings are different sizes in memory, then what is the interpreter doing to the memory to make that work.
@TitusVespas Жыл бұрын
If I understand correctly, typing in python is only for the IDE and does not impact the execution of the code. Python will bundle most "objects" into a pointer.
@danielschmider5069 Жыл бұрын
I feel like Pycharm does most of this automatically, without having to use typehints. Why are you using vscode with pylance if it is buggy?
@punittheprogrammer1392 Жыл бұрын
Hey, What ide you are using?
@alvaroe2704 Жыл бұрын
It is VS Code. Im interested in which extension he is using for code autocompletion and generating functions out of comments
@1rbroderi Жыл бұрын
@@alvaroe2704pretty sure it's the git copilot extension
@MultiKB13 Жыл бұрын
I believe it's GitHub Copilot
@izzidin28 Жыл бұрын
@alvore2704 i think it is github copilot
@quillaja Жыл бұрын
@@alvaroe2704 the ms python extensions for core python support, copilot for the big code suggestions
@yash1152 Жыл бұрын
10:29 ahw, PYTHOOON >3.10 the _perfect_ hodge podge of all kinds of syntaxes
@JSDudeca Жыл бұрын
I wonder if there are there ways to reflect the generic type T to do runtime validation. Eg ‘is_inst(x, T)’ where is_inst is a user defined function that returns a bool.?
@aflous Жыл бұрын
You can do that by using a @runtime_checkable Protocol
@_Akhilleus_ Жыл бұрын
Will python become a static typed language soon?
@aflous Жыл бұрын
Never according to the BDFL
@yandelyano Жыл бұрын
Thank you, but could've gained a better understanding of generic typing in 3.12, namely after.py. Please consider that us, average coders, could use more low level breakdowns to be able to follow.
@pawematysiak3641 Жыл бұрын
These are long overdue.
@justchary Жыл бұрын
Thank you for video. Just thinking aloud: python has gained its popularity as an easy to pickup language with low language-related cognitive load. E.g. there is even no need to declare a variable (like one has to in JavaScript). But I got a feeling, that if one has to use all these type annotations correctly, then this requires much more cognitive efforts than would be required on the language which is initially statically typed (like Java or C#).
@aflous Жыл бұрын
In Python, it's true you can cruise without declaring variables or using type hints, making it feel like a breezy ride. But remember, while you're enjoying the scenery in your 'non-production' car, the absence of type hints could set you up for a bumpy road ahead. On D-day, when your code hits production, that's when you might find yourself wishing you had used those type hints. It's all fun and games until untyped code causes unexpected crashes in production!
@dirtdart81 Жыл бұрын
Which makes it perfect for both throwaway scripts and large production-ready programs. The typing is optional so you can skip a lot of "boilerplate" if you just need a quick script, but if you're working on a much larger project, you can start to use typing so the IDE and interpreter can help point out issues early on
@aflous Жыл бұрын
@@dirtdart81 the type checker, not the interpreter
@justchary Жыл бұрын
@dirtdart81 I understand that. But my point is that cognitive load of doing this correctly seems to be higher than using a statically typed system to start with.
@yickysan Жыл бұрын
The generics now like that of typescript.
@Damir-v9i Жыл бұрын
Thank you again for another great video! The only thing I do a bit differently is I divide my implementation into .py files and the annotations and the documentation into .pyi files. The reason is that I have colleagues with different python versions on their machines, and if they execute code with new styles they get SynatxErrors all over the place. Since I dont want to force anyone to switch to anything I found this approach to work, Intelisense helps them even if they use versions like 3.10, 3.11 And the code works :)
@maleldil1 Жыл бұрын
Having different team members use different Python versions is a recipe for disaster. The project should define the Python version it targets, and everyone should use it, possibly with tools like pyenv.
@jakobullmann7586 Жыл бұрын
Is that a Durgod Taurus?
@PitoSalas Жыл бұрын
Forcing me to watch ads is a turnff
@thomaseb97 Жыл бұрын
dynamic typing was a mistake imo, it causes more issues than it solves, i prefer enforced static typing, so going from that generics is atleast a step up for me
@AndrewBlucher Жыл бұрын
This is the problem with Python. Instead of a single clean language definition we have an unending list of variations.
@rezwhap Жыл бұрын
I agree, but I think this is true of many languages now: constant iteration. At least Python3 seems to be managing it quite well.
@ArjanCodes Жыл бұрын
It’s a good thing that Python changes IMO. Any language that doesn’t continuously adapt to the needs of developers and the industry will be replaced by one that does.
@AndrewBlucher Жыл бұрын
@@ArjanCodes Hi Arjan. It gets replaced frequently, by a new language with the same name. The result is people have to know umpteen dialects or versions of the Python family. I find it grimly amusing that the initial appeal of this language was it's flexible typing, and we see more and more proper software engineering features being added to make Python programs more robust. It won't be long before it has preconditions, postconditions, and invariants, and it's called Eiffel! :-) Regards, Andy
@gardnmi Жыл бұрын
I personally use typing but only to a point. At some point the cost benefit of implementing and supporting the complexity of types outweighs the benefit , especially in Python.
@ApprendreSansNecessite4 ай бұрын
I'm not conviced by the tuple notation when adding a union of type bounds to a generic. Why a different syntax when you already have unions? It feels like types in Python are still an afterthought. I am also surprised by the comments which are against typing altogether. I hope the most important community packages support types
@ArjanCodes4 ай бұрын
A union in a type boundary works differently from what the tuple does. Let’s say you have a generic List class. If you set the type boundary to “int | float”, then you can only create lists that contain elements that are either ints or floats. If you set the type boundary to “(int, float)”, you can only create lists containing ints, or list containing floats.
@ApprendreSansNecessite4 ай бұрын
Oh that's nice then!
@BuFu1O1 Жыл бұрын
Niiice
@couldntfindafreename11 ай бұрын
C# without braces and without the performance advantages.
@georgehammond86711 ай бұрын
python3 is looking more alike C/CPP.!
@julienstanguennec9563 Жыл бұрын
Usually, video sponsor and video content are more linked together :p
@mahanaim13411 ай бұрын
downvoted due to ho$tinger recommendation
@mehdi-vl5nn Жыл бұрын
17:14 ..yes JAVA
@AspartameBoy Жыл бұрын
A…. Ah…Why worry about type at all? Just process the input as a list? Unless using cython, typing is not a good thing.. and by making the type generic you surrender the whole premise
@TragicGFuel3 ай бұрын
No? Generic types are sometimes necessary
@ArkenGAMES21 күн бұрын
Hahah **laughts in Java**
@JaapvanderVelde Жыл бұрын
In your explanation of the reason to use a list of generics, you miss the actual reason. If you just want to pass a `list` of any type, you could just do old-school Python and pass an unqualified `list`. However, that would mean that, for any following code that uses something from the resulting list, the editor may not be able to infer what the type of the elements from the result is. *That's* why you want to type the contents of the list, and that's why passing a generic makes sense, since it makes explicit that the elements in the resulting list are indeed the same type as the elements in the argument.
@troncooo409 Жыл бұрын
I think, we make a mistake with type hinting. What a function can process depends on the methods used in the function and if the variables can handle that. In case they can, it isn't a valid variable. Just my 2 cents.
@troncooo409 Жыл бұрын
Can't
@Graham_Wideman Жыл бұрын
@@troncooo409 You can edit your original comment.
@Graham_Wideman Жыл бұрын
Type hinting doesn't cause this problem. If you remove type hinting, your function still doesn't work with the exact same argument types
@troncooo409 Жыл бұрын
I mean method hinting instead of type hinting.
@sorvex9 Жыл бұрын
13:26 that seems like a wildly inappropriate place to use a Generic, the whole point is that you can make an abstract implementation that can take in a generic variation of types. If you are gonna make some thing as specific as a VehicleRegistry and you have a Vehicle class, it would be much clearner to merely say it inherits from an abstract implementation of a vehicle.
@izzidin28 Жыл бұрын
could you make a video about mojo language
@EliasHansenu7f Жыл бұрын
So why use annotations when other languages are already typed and in the case of Rust offering even generics for enums? The idea of of a easy to manage scripted language is going lost.
@quillaja Жыл бұрын
because people insist on writing giant complex applications in a "scripting" language and then can't figure out what the heck is happening in the program
@EliasHansenu7f Жыл бұрын
@@quillaja Then it would be time to create a new language with traits from Python and a typed language. I love Python, made large projects with Python but at a certain point other languages are better.
@quillaja Жыл бұрын
@@EliasHansenu7f I agree. But also sometimes you don't get to choose the language you must use. I'll gladly take type hints over no type hints since I'm forced to use Python these days in the GIS field.
@logicaestrex22785 ай бұрын
@@EliasHansenu7fthats called nim lol. Go is also an alternative
@sebastian8436 Жыл бұрын
Python is becoming more and more like Java😂
@zbaktube Жыл бұрын
Hi! Thanks for the video, a good one again! My opinion is that it is a Microsoft influence. It tries to turn python to a full-blown general purpose language while ignoring the original users of the language: the scientific community. My opinion is that this path will alienate the science world from python. Async-await, this generic implementation, etc are CSharpic, not pythonic. It is not by mistake that it was not added till 3.5 or 3.8 (I cannot remember clearly when it was introduced first, but compared to when it was added to c# shows the difference in thinking between scientific community and developer community). I feel these changes goes against the scientific community (not on purpose, more fueled by arrogance), and opens up new possibilities for competitors like Julia, or maybe a new scientific language will be born. It is not by mistake that researchers don't use c# with calling c codes by marshaling but use python instead. So, this is my opinion and my "prophecy", I am looking forward how it works out in the real life 🙂
@katycat5e Жыл бұрын
Why is adding new helpful features a betrayal of the scientific community? They are still able to write the same messy code with no typing that they always were, while those who want the benefits of type checking are now able to utilize it.
@zbaktube Жыл бұрын
@@katycat5e Hi, thanks for your question! compare the history of c#, and python. When c# 1 came out they apologised and told that generics comes soon. Python came earlier, and they do not cared too much about generics since. Scientific community always avoided those problems that developer's communities solve. Look at the logic how plotly works. it is alien to "normal" programmers. We can do better, look at just the logic behind bokeh. Still, plotly is thriving in scientific communities. Why? My opinion is that because mathematicians, etc solves problems differently then normal developers. So, for them this is a feature that they never asked for, but will alter their way of work. This is why I think it is a betrayal. So, my opinion is that this feature is not intended to the scientific community but for the common programmers. New features will bring new theories and ways of work, documents, books, etc that in this case is foreign for the original community of python users. So, currently it looks like scientific community created their language to their messy codes, but general developers started to like it. Now they came, and they turns the language to a kind they run away from in the beginning when they choose to join the python community. Again, this is my personal opinion, I am curious how it plays around in life.
@samcork7597 Жыл бұрын
Why not just define it as process_elements(elements: list) -> list: ??
@ArjanCodes Жыл бұрын
Because then you don’t specify that the input list has the same type of elements as the output list. For all we know, the function as you defined it may take a list of integers and then return a list of strings.
@alexanderoransky76014 ай бұрын
It blows my mind how many years it is taking to get the type hinting right and only for what? To keep linters happy. Not to mention that it goes against the core idea- make a _dynamic_ language that is easy to learn and use. If you want types- use any other modern language that was designed for it from the beginning.
@0xomara48211 ай бұрын
Shame I can't use this in any library code for at least a year or two.
@tigidou334411 ай бұрын
I don't understand people who want put type in python code.
@anton-r11 ай бұрын
first of all tnx. for your effort ! Why use such complicated structures ? with this generic etc ? i do understand and i do use the small type annotation str int etc. but this ?! why ?! this is python !!! if you like to use strong leng use kotlin or ++ what ever ? but this is python is dynamic leng , this is point of this leng.
@liquiddddd Жыл бұрын
Why in the name of God, does a class named 'MyClass' need a Generic type? Objects of that class would be of type 'MyClass'. End of story. What am I missing here?
@maixmm778 Жыл бұрын
If you ever feel the urge to use type hinting in python you're using the language wrong
@thomasroberts6008 Жыл бұрын
Completely disagree, the improvement to readability and the static checks by your IDE make them 1000% worth it.
@Graham_Wideman Жыл бұрын
If you ever feel the urge to write software beyond trivial scripts without all the assistance you can get from language and IDE, then you are using computers, your brain, and your future colleagues wrong.
@mrvincefox9 ай бұрын
All I heard is click clack clack, bash bash, clack clack. Mech keyboard are dumb