Тёмный
Indently
Indently
Indently
Подписаться
Simple is better than complex_
5 Really Cool Python Functions
19:58
День назад
5 Fun Python Easter Eggs
6:32
14 дней назад
What is "@total_ordering" in Python?
11:12
21 день назад
Should you still learn Python in 2024?
6:32
21 день назад
This is very convenient in Python
5:27
28 дней назад
Python's 5 Worst Features
19:44
Месяц назад
Python's "itemgetter" is very useful
6:15
Месяц назад
All 39 Python Keywords Explained
34:08
Месяц назад
NEW PyCharm Features (2024 Update)
6:41
Месяц назад
5 Useful Dunder Methods In Python
16:10
Месяц назад
Is "finally" Useless In Python?
7:02
Месяц назад
5 Tips To Write Better Python Functions
15:59
2 месяца назад
5 Random Useful Python Functions
12:32
2 месяца назад
5 More Useful F-String Tricks In Python
9:38
2 месяца назад
5 Useful Python Decorators (ft. Carberra)
14:34
2 месяца назад
3 Bad Python Habits To Avoid
10:40
2 месяца назад
5 Uncommon Python Features I Love
15:09
3 месяца назад
5 Good Python Habits
17:35
3 месяца назад
It finally happened!
3:56
3 месяца назад
5 Useful F-String Tricks In Python
10:02
3 месяца назад
If Python was an anime...
0:56
4 месяца назад
Комментарии
@GSK-Tech
@GSK-Tech 17 минут назад
I was also thinking about that how could we anotate just running functions.
@TheMonkeySleo
@TheMonkeySleo 27 минут назад
As a C++ developper learning python... Thanks you 🥲
@morrispearl9981
@morrispearl9981 2 часа назад
I often use a loop to search for something, and use "break" to break out of the loop when it is found. Then "else" means it was not found, which kind of makes sense to me.
@downlaw
@downlaw 4 часа назад
I work with databases a lot and I do a lot of data manipulation. Do you have any lessons for that? I like continuation.
@EdKolis
@EdKolis 5 часов назад
That antigravity thing reminded me of a video I just watched about MS Office macro viruses. Who thought it was a good idea to give a programming language the ability to open a browser window?
@luisthesup
@luisthesup 5 часов назад
Remember that the else-statement in both the for and while loops, will also be executed even if the program doesn’t enter the loop’s body.
@facilvenir
@facilvenir 8 часов назад
Great video. Mot likely I'll have to come back eventually hahaha I really like your channel.
@PCgmesforever
@PCgmesforever 9 часов назад
Why is it that all programming teachers I know are calmest most chill and nice people yet they casually drop the darkest type of humour or life truths :D
@anthonydrakefordshadow
@anthonydrakefordshadow 11 часов назад
Thank you I really am beginning to appreciate material that is more focused on thinking, and Python. I’ve learned a lot from tutorials, but for the most part, I am only able to apply what I have copied and limited situation versus having an understanding and being able to create.
@PCgmesforever
@PCgmesforever 13 часов назад
8:40 "Bob is not responding" I mean ofcourse ... Typical good for nothing Bob
@ConfidentlyRong-jo5yt
@ConfidentlyRong-jo5yt 15 часов назад
Great video! Thanks for the lightbulb moment :) Helping me become confidently correct
@DavideCanton
@DavideCanton 21 час назад
Assigning lambdas is discouraged and even disallowed by most linters. The flatten example does not work on generic sequences, while it should.
@nashiki4792
@nashiki4792 22 часа назад
What is the plug-in that you use for checking type hints?
@GAMINVR
@GAMINVR 22 часа назад
how do i make the bot send a image
@BlueprintBro
@BlueprintBro 23 часа назад
Thanks legend
@suhaimiseliman8593
@suhaimiseliman8593 День назад
I 🤔THE COMPUTER MANUFACTURER SHOULD PRE INSTALL ALL SOFTWARE FOR AUTOMATION,DATA SCIENCE,AL,...🫣😎🥳😁
@smanzoli
@smanzoli День назад
EVERY SINGLE video about the super useful memoization, use fibonnacci as example. That's SAD.
@sloan00
@sloan00 День назад
Creating a lambda function and assigning it directly to a variable is considered bad practice.
@legoking6193
@legoking6193 День назад
you taght me everything i know about phython
@MakeDataUseful
@MakeDataUseful День назад
Short answer, absolutely yes
@The-KS
@The-KS День назад
Can someone explain why he has :init) and -> init?
@thatoneguy1821
@thatoneguy1821 День назад
Insanely helpful! Thank you
@Slgjgnz
@Slgjgnz День назад
If we are to mention golfing, let's go all the way. return ['No',Yes'][len(user_input)>10]+' case' or return 'YNeos'[len(user_input)<11::2]+' case'
@nuynobi
@nuynobi День назад
Only the last one is specific to f-strings though, right? The rest are all just general string formatting techniques. Good tips nonetheless.
@lucasemanuelgenova9179
@lucasemanuelgenova9179 День назад
the video just show a lot of useful features that someone that does not know the language might be confused about...
@garnergc
@garnergc День назад
I remember seeing a reflex match phase that is over 200 characters long to be able to match 99.999% of email addresses due to the sheer complexity of getting all permutations of emails
@thirdeye4654
@thirdeye4654 День назад
Regex is less painful than type annotations. :P By the way, a regex pattern using [A-Za-z0-9_] is just [\w]. I am also wondering who ever needs to reverse a string, is there a use case for it?
@azophi
@azophi День назад
Python checklist 1. Readability 2. Performance/Space I try to avoid things like lambda functions or other “pythonic” things for minimal time improvements in in industry code 😅