Тёмный
b001
b001
b001
Подписаться
Simplicity is the ultimate sophistication!
Dijkstra's Hidden Prime Finding Algorithm
15:48
6 месяцев назад
The Algorithm Behind Spell Checkers
13:02
7 месяцев назад
The Even Groups Problem in Python
3:46
9 месяцев назад
A Clever Way To Use Sets In Python
2:51
9 месяцев назад
Python Classes in 1 Minute!
1:26
9 месяцев назад
Why Are Sets Like This??
4:56
Год назад
*Args and **Kwargs in Python
3:49
Год назад
List Comprehension in Python
2:01
Год назад
What is Scope in Python??
10:25
Год назад
Python Yield Keyword??
3:18
Год назад
Python Lambda Functions??
4:30
Год назад
Python's Walrus Operator??
2:39
Год назад
Python Decorators in 1 Minute!
1:09
Год назад
How To Make An AFK Bot!
5:13
Год назад
Using The Python Pickle Module
6:55
Год назад
Комментарии
@le9038
@le9038 22 часа назад
"Try not to use single letter variable names" TI-BASIC Developers: **Uncontrollable Sobbing**
@PoisonousCowCoding
@PoisonousCowCoding День назад
I’m gonna use this on those “im not a bot” tests
@bryuhanovdima
@bryuhanovdima День назад
in js/ts: link.replace(/^(?:www\.)/i, "");
@bryuhanovdima
@bryuhanovdima День назад
Or link.slice(4);
@ArticlesGD
@ArticlesGD День назад
lambda: HALF LIFE
@porcinetdu6944
@porcinetdu6944 День назад
What a shitty language
@user-kk3dm9hv8f
@user-kk3dm9hv8f День назад
Background music is irritating
@MukundKannan
@MukundKannan День назад
What theme is this
@farhannaser
@farhannaser День назад
a = [1, 2, 4, 6, 8] b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] c = sorted(set((*a, *b))) print(c)
@Bull_88
@Bull_88 День назад
RIP Time complexity 👀☠️❌
@GoddessZex
@GoddessZex День назад
Or; just add them in the list without www
@andersk
@andersk День назад
Or just do one line "link[4:] for link in links"
@truonggiangnguyenang8476
@truonggiangnguyenang8476 День назад
Im new here, this is helpful. Tks from vn
@HanyaApel8671
@HanyaApel8671 День назад
What's the difference if i use the "if" function instead?
@viniciusfigueiredo6740
@viniciusfigueiredo6740 День назад
Thank you for this explanation! Greetings from Brazil
@trevorsurname8153
@trevorsurname8153 2 дня назад
randint is trash! It is slower than randrange, lacks the step option that randrange has, and the upper bound is inclusive which is inconsistent with everything else in Python.
@artempest7137
@artempest7137 2 дня назад
What’s that theme that you are using
@DonClemmy
@DonClemmy 2 дня назад
i thought for loops in pandas is uncommon since it doesn't take advantage of vectorization, and so its slower?
@permanar_
@permanar_ 2 дня назад
Thanks for the tip! (I don't use Python but watch it till the end anyway)
@daruprasetiyo
@daruprasetiyo 2 дня назад
What a nice video
@Agent-lg1mu
@Agent-lg1mu 2 дня назад
what theme you are using in vs code?
@sam-lr5bz
@sam-lr5bz 3 дня назад
But then does the removesuffixe exist ?
@TypeAlpha55
@TypeAlpha55 3 дня назад
How do I get every aspect of Python down?
@ilnomedimestesso5296
@ilnomedimestesso5296 3 дня назад
How is the theme you are using called?
@kℏ0
@kℏ0 3 дня назад
It's looking like mini alien shooter
@MihirVir-fi8gg
@MihirVir-fi8gg 4 дня назад
would rather using substring
@DD-dp4pj
@DD-dp4pj 4 дня назад
Why make it so complicated when it is simply just this letters = ['a', 'b', 'a', 'c', 'b', 'a'] new = list(set(letters)) new.sort() print(new)
@seththunder2077
@seththunder2077 4 дня назад
Where did you get .items from in details.items()?
@b001
@b001 4 дня назад
.items() is a built in method for all dictionaries in Python. It returns the key-value pairs.
@seththunder2077
@seththunder2077 4 дня назад
@@b001 thank you
@CapybaraHunter187
@CapybaraHunter187 4 дня назад
new trend: replace if statements with or😂
@ModifiedMike
@ModifiedMike 4 дня назад
I JUST STARTED BUT WHY IS THIS SO CONFUSING FOR MY BRAIN TO UNDERSTAND!
@Kira-vs4np
@Kira-vs4np 4 дня назад
Best explanation
@eduardmart1237
@eduardmart1237 4 дня назад
How did you make performance graph?
@Harvles93
@Harvles93 4 дня назад
you just over complicated everything. print(1+2) is the most efficient, if you simply want to know the addition of x,y.
@gordon2161
@gordon2161 4 дня назад
You could also do: Sorted(list(set(nameoflist)))
@Bumpster01
@Bumpster01 4 дня назад
but how do you stop it lol
@kaif9307
@kaif9307 4 дня назад
Why can't we use sort function?? Anyone
@pandalonium
@pandalonium 4 дня назад
I genuinely thought you were going to show how you can do all of that in one line
@DawnBriarDev
@DawnBriarDev 5 дней назад
I feel like we've reached the point where weird, useless optimization videos are becoming trending. They contain advice you probably won't ever use or need, because it's presented in a context and scope where it isn't actually useful at all, and then the comments will argue back and forth about extreme black and white stances, neither of which is right, about how you 100% should never always do a certain generic thing they don't actually understand. I'm gonna go back to actually innovating.
@MarekKnapek
@MarekKnapek 5 дней назад
Or, examine logs the http server already produces anyway and count the visitors from this data. Do this once in a while (dunno, once per day). And store the count into some nice database. Then create web page with nice graphs of visitors over time, per operating system, per web browser and similar stuff.
@chrikke
@chrikke 5 дней назад
Python tutorials: Ok, so for this guide, we're going to install what someone else made for us, and just use that. Thanks for watching
@kaildeb1312
@kaildeb1312 5 дней назад
I'm making these in java
@shashankshekhar6952
@shashankshekhar6952 5 дней назад
Everyone gangta till print(input("Name: ") or 'N/A')
@zerothree12
@zerothree12 5 дней назад
I know I'm late but can you tell me what is the font that you use? And thank you I really love your content btw.
@s.hamedstriker5315
@s.hamedstriker5315 5 дней назад
finally! an explanation to the use not complicated mechanism!
@leagueofangels1866
@leagueofangels1866 5 дней назад
whats your VS code theme and how to get it
@user-bn2nt4dn9j
@user-bn2nt4dn9j 5 дней назад
Best and easiest explanation
@marcelovcoutinho
@marcelovcoutinho 6 дней назад
nums = range(1, 1000) def is_prime(number): if number < 2: return False for divisor in range(2, int(number ** 0.5) + 1): if number % divisor == 0: return False return True
@piyushtarai6515
@piyushtarai6515 6 дней назад
Just use set😊
@AGMP9
@AGMP9 6 дней назад
Hello please reply
@anandsuralkar2947
@anandsuralkar2947 6 дней назад
title: one liner video: three lines
@Repulsion-kt3tx
@Repulsion-kt3tx 6 дней назад
Major origin for "men of culture" 💀