5 Tips To Write Better Python Functions

  Рет қаралды 86,121

Indently

Indently

Күн бұрын

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

Пікірлер: 146
@shakapaker
@shakapaker 2 ай бұрын
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 ай бұрын
thx, saved me 15 minutes
@kezif
@kezif 2 ай бұрын
thanks, 15 minutes saved
@user-iy6dt4xp5o
@user-iy6dt4xp5o 2 ай бұрын
*1. raise NotImplementedError instead of … *EDIT: this was fixed*
@xsamueljr
@xsamueljr 2 ай бұрын
*args instead of *strings
@entreprenewer
@entreprenewer Ай бұрын
Not all heroes wear capes
@hellNo116
@hellNo116 2 ай бұрын
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 Ай бұрын
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 Ай бұрын
@@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 Ай бұрын
@@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 Ай бұрын
@@vamastah1737 no. Python with types is the best way to program.
@FighterAceee94
@FighterAceee94 2 ай бұрын
raise NotImplementedError("Too drunk to think this through atm")
@kaltaron1284
@kaltaron1284 25 күн бұрын
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 11 күн бұрын
Real.
@DrDeuteron
@DrDeuteron 2 ай бұрын
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 23 күн бұрын
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.
@hriscuvalerica4814
@hriscuvalerica4814 2 ай бұрын
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 ай бұрын
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 ай бұрын
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 ай бұрын
​@@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
@Websitedr
@Websitedr 2 ай бұрын
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
@dipeshsamrawat7957
@dipeshsamrawat7957 2 ай бұрын
Excellent! 💯
@senzmaki4890
@senzmaki4890 2 ай бұрын
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 ай бұрын
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
@gksculpture
@gksculpture Ай бұрын
I must say I love your tutorial so many new concept I thought that never exist 👌🏽
@sdmagic
@sdmagic 2 ай бұрын
Very useful. Thanks!
@Alexme111
@Alexme111 15 күн бұрын
join text function example is absolutely great. Thank you
@bendirval3612
@bendirval3612 2 ай бұрын
Those were some great tips. Thanks!
@kumaranb8702
@kumaranb8702 2 ай бұрын
Very nice 🙂
@Markadown
@Markadown 25 күн бұрын
As a beginner, this was great. Thank you.
@7thAttempt
@7thAttempt 2 ай бұрын
Excellent!
@phaedrus2633
@phaedrus2633 2 ай бұрын
Great tutorial videos. You really get me thinking. My head hurts!
@matsim0
@matsim0 13 күн бұрын
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.
@user-cx6rg6mr7d
@user-cx6rg6mr7d Ай бұрын
thank you so much!
@oSpam
@oSpam 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 ай бұрын
Pep8
@oSpam
@oSpam 2 ай бұрын
@@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.
@rodelias9378
@rodelias9378 24 күн бұрын
Good video! Thanks a lot
@godwinv4838
@godwinv4838 2 ай бұрын
thanks
@benjamingeiger
@benjamingeiger Ай бұрын
I wish the ellipsis would raise NotImplementedError (the way ??? does in Scala) instead of effectively being a synonym for "pass" when outside slice context.
@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.
@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
@TigerWalts
@TigerWalts 2 ай бұрын
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 ай бұрын
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 Ай бұрын
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.).
@conceptrat
@conceptrat 15 сағат бұрын
Did you notice that in the final tip joining strings, when you printed the second tuple that the print statement displayed ('A,') and not just ('A'). It's that a potential bug?
@SolathPrime
@SolathPrime 2 ай бұрын
[ 11:04]: Why private cat video? Now me angry! Me want cat!
@Carberra
@Carberra Ай бұрын
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
@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?
@Rusvi1
@Rusvi1 28 күн бұрын
Thank you.
@rugikex
@rugikex 2 ай бұрын
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 ай бұрын
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 2 ай бұрын
*strings: str (answer)
@Hnxzx_gt
@Hnxzx_gt Ай бұрын
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.
@supermalavox
@supermalavox 2 ай бұрын
When is it a good practice to put a slash after the arguments you want to pass instead of an asterisk?
@vytah
@vytah 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 ай бұрын
Thanks, @@vytah.
@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 ай бұрын
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 ай бұрын
Python is executable pseudocode. Same with Haskell.
@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.
@SolathPrime
@SolathPrime 2 ай бұрын
12:26 Yay
@Indently
@Indently 2 ай бұрын
It had to be made public eventually
@AGENT_V-252
@AGENT_V-252 Ай бұрын
What's the editor you using?
@asanokatana
@asanokatana 6 күн бұрын
That is PyCharm.
@user-su1wf3wz6c
@user-su1wf3wz6c Ай бұрын
🔥
@ritikraj26_
@ritikraj26_ 2 ай бұрын
Finally people are realising that a proper syntax with explicit variable types, return types, etc actually makes programming easy.
@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 ай бұрын
That is not VSCode, it's PyCharm or IntelliJ Idea. I think the usages come default in that editor.
@Indently
@Indently 2 ай бұрын
Inlay hints on PyCharm
@som45oul
@som45oul 2 ай бұрын
Thanks. I found your setup video.
@kritsadinseekeaw5263
@kritsadinseekeaw5263 21 күн бұрын
How many vs code python extension? I like comment 1 usage.
@mohamed_rida_b1304
@mohamed_rida_b1304 2 ай бұрын
🥇🎉🎉🎉
@rubix438
@rubix438 16 күн бұрын
What's this color scheme?
@romy4romy4
@romy4romy4 2 ай бұрын
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 25 күн бұрын
Why not use mocks instead? That way you can separate what's ready and working and what's just for testing.
@mohammadnej7029
@mohammadnej7029 14 күн бұрын
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!
@exkalybur_dev
@exkalybur_dev 2 ай бұрын
I'm learning English. I'd like to know where are you or where come from your accent. Please. Thanks a lot.
@vastabyss6496
@vastabyss6496 25 күн бұрын
His KZfaq profile says he's from Denmark if that helps
@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 Ай бұрын
def func1(self) -> MyClass: return self
@exploringMyself998
@exploringMyself998 Ай бұрын
@@archardor3392 It gives not implemented error
@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 ай бұрын
It's type hints Just hints, they do not provide any contact over the actual variable type
@kaltaron1284
@kaltaron1284 25 күн бұрын
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 20 күн бұрын
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 22 күн бұрын
I will not do dot the return type thing, regardless how 'useful' people say it is
@Indently
@Indently 22 күн бұрын
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 :)
@Nerdimo
@Nerdimo 2 ай бұрын
If you pass a function and never implement it, did you even need it in the first place?
@dragweb7725
@dragweb7725 2 ай бұрын
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.
@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.
@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 25 күн бұрын
*args get transformed into tuples, **kwargs into a dict. As per usual you aren't allowed to use positional arguments after keyword arguments.
@DrDeuteron
@DrDeuteron 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 ай бұрын
That's absolutely fair, but as usual, my example was just for demonstration purposes.
@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...
@darcash1738
@darcash1738 2 ай бұрын
#1 Ctrl f pass later if this becomes an issue for you
@devamthakar3829
@devamthakar3829 2 ай бұрын
What ide is that
@realdotty5356
@realdotty5356 2 ай бұрын
Pycharm
@DeVibe.
@DeVibe. 12 күн бұрын
You can write much better python functions using C/C++.
@casperghst42
@casperghst42 2 ай бұрын
"pro tip" comes across as bring the exact opposite.
@GonnaLoveThis
@GonnaLoveThis Ай бұрын
what does it mean?
@lonely_0fficial
@lonely_0fficial Ай бұрын
where was all that hiding from me all the time?
@lhard123l
@lhard123l Ай бұрын
not none but NoReturn if no retyrning
Is "finally" Useless In Python?
7:02
Indently
Рет қаралды 49 М.
5 Really Cool Python Functions
19:58
Indently
Рет қаралды 38 М.
When Steve And His Dog Don'T Give Away To Each Other 😂️
00:21
BigSchool
Рет қаралды 12 МЛН
Они убрались очень быстро!
00:40
Аришнев
Рет қаралды 1,4 МЛН
C++ Developer Learns Python
9:26
PolyMars
Рет қаралды 2,7 МЛН
5 More Useful F-String Tricks In Python
9:38
Indently
Рет қаралды 40 М.
5 Good Python Habits
17:35
Indently
Рет қаралды 353 М.
How To Create Decorator Functions In Python
4:59
Taylor's Software Solutions
Рет қаралды 1,6 М.
Understanding B-Trees: The Data Structure Behind Modern Databases
12:39
25 nooby Python habits you need to ditch
9:12
mCoding
Рет қаралды 1,7 МЛН
My 10 “Clean” Code Principles (Start These Now)
15:12
Conner Ardman
Рет қаралды 115 М.
5 Useful Python Decorators (ft. Carberra)
14:34
Indently
Рет қаралды 84 М.
All 39 Python Keywords Explained
34:08
Indently
Рет қаралды 101 М.
When Steve And His Dog Don'T Give Away To Each Other 😂️
00:21
BigSchool
Рет қаралды 12 МЛН