Пікірлер
@lekwajoshua9378
@lekwajoshua9378 12 сағат бұрын
i had love to see real-time applications of these python codes
@lekwajoshua9378
@lekwajoshua9378 13 сағат бұрын
Sincerely, you are a good teacher. Thank you very much sir.
@lekwajoshua9378
@lekwajoshua9378 14 сағат бұрын
Thank you so much sir
@editsz111
@editsz111 17 сағат бұрын
im learning this after 6 years ago goated
@FatiaAbdulrahman
@FatiaAbdulrahman 20 сағат бұрын
Who is watching 2025
@olivezoo
@olivezoo Күн бұрын
more examples of getter and setter ,plz teacher.
@taxuanhieuanh981
@taxuanhieuanh981 Күн бұрын
Nice
@Issac-forever
@Issac-forever Күн бұрын
Excellent Explanation, Well Done.
@ukusama
@ukusama 2 күн бұрын
It keeps crashing on random moments 🥲
@Bonbonvendor
@Bonbonvendor 3 күн бұрын
Thx so much, very clear and understandble
@jirkadolezal8127
@jirkadolezal8127 3 күн бұрын
thank you
@pzmt8051
@pzmt8051 4 күн бұрын
Goodjob
@IbrahimUsman-i7k
@IbrahimUsman-i7k 5 күн бұрын
Watching in 2025
@SarahWindseron
@SarahWindseron Күн бұрын
😂
@uaeuae5809
@uaeuae5809 5 күн бұрын
whos watching this in 2025
@jayrajghosh5872
@jayrajghosh5872 5 күн бұрын
,2025 🎉🎉🎉🎉
@anjofiel28
@anjofiel28 6 күн бұрын
I'm looking for a programmer to develop an app, I want to form a partnership, I'm willing to pay, get in touch
@ncg89
@ncg89 6 күн бұрын
I still don't get it
@StanleyVarmah
@StanleyVarmah 6 күн бұрын
I'm watching
@joyolohita1448
@joyolohita1448 7 күн бұрын
even in 2025, this video is just so relevant. let me know if you agree with me.
@mccauleybacalla2228
@mccauleybacalla2228 7 күн бұрын
THANK YOU SO MUCH
@perpetualtechnoob
@perpetualtechnoob 7 күн бұрын
# ----------- CREATE A LINKED LIST NODE CLASS -------------- class Node: def __init__(self, data, next = None): self.data = data self.next = next node6 = Node(4) node5 = Node(1, node6) node4 = Node(8, node5) node3 = Node(19, node4) node2 = Node(42, node3) node1 = Node(7, node2) head = node1 print("SHOW ME THE HEAD'S DATA: ", head.data) print("SHOW ME THE NEXT NODE'S DATA: ", head.next.data) print("--- --- --- --- ---") # ----------- CREATE A LINKED LIST NODE COUNTER -------------- def nodeCounter(head): nodeAmount = 1 current = head while current.next: nodeAmount += 1 current = current.next return nodeAmount print("FULL LINKED LIST NODE AMOUNT: ", nodeCounter(head)) print("AMOUNT OF NODES FROM NODE5 (INCLUSIVE): ", nodeCounter(node5))
@JackBrown-c9x
@JackBrown-c9x 7 күн бұрын
this is really helpful, looking forward to more videos on app development for accessibility
@Yseerv
@Yseerv 8 күн бұрын
So much value in your videos, thank you man. 👍
@0furkanyalcin0
@0furkanyalcin0 8 күн бұрын
thank you sir
@allmight8808
@allmight8808 8 күн бұрын
thanks bro i really appreciate all that clear explanation straight to the points no mistakes good quality well organized and all that is for free
@daviddawid123
@daviddawid123 8 күн бұрын
total = 0 for e in range(1, 101): if e % 5 == 0: total += e elif e % 3: total += e print (total) ty cs dojo you might not read this but you really helped me btw😁
@BaligiSimon
@BaligiSimon 8 күн бұрын
have a small problem with how to code
@pzmt8051
@pzmt8051 8 күн бұрын
這個老師比起很多KZbinr 有良心多了, 看看一堆想混淆初學者的表哥,怎麼寫code的: Robot Robot= new Robot(); this.name =name; this.color =color; this.weight =weight;
@shamiraidora9076
@shamiraidora9076 8 күн бұрын
YOURE GOATEDDD
@flanker53
@flanker53 9 күн бұрын
it wont replace software engineers. It will make them productive and hence less number of software engineers will be required to build a thing than it used to require. Hence the shortage in jobs in market.
@wonderland2508
@wonderland2508 9 күн бұрын
its easy but why when i want to launch the jupyter notebook it can't open immediately? i keep on clicking the launch button but still its not working.. helpppp
@VanguardSeraph
@VanguardSeraph 10 күн бұрын
Who are watching in 2025
@ShiwooPrasad
@ShiwooPrasad 7 күн бұрын
Here🖐🏻👋🏻😂
@seoulmate1360
@seoulmate1360 11 күн бұрын
Hello I'm from the medical field and just started learning Python yesterday because my bestfriend convinced me to. Your explanation is one of the most succinct, clear, and beginner-friendly. The concepts I found very difficult were all crystal clear because of you. I'm excited to learn more difficult topics from your channel. Kudos! Btw, are there any models of laptop or computer that are more suitable when you're studying Python?Sorry for asking a dumb question. I honestly have zero idea 😅
@allmight8808
@allmight8808 11 күн бұрын
thanks bro
@aksarosales-rm1kt
@aksarosales-rm1kt 12 күн бұрын
Me I'm watching 2025😂
@richardharris202
@richardharris202 12 күн бұрын
Password 😂
@tybargky461
@tybargky461 13 күн бұрын
I could kiss you, thank you for this video bro
@HAMZASHAIKH-qs6zv
@HAMZASHAIKH-qs6zv 13 күн бұрын
Best
@Twenty5Reazonz
@Twenty5Reazonz 13 күн бұрын
Thanks for sharing this lesson and your story!
@ZIBI0001
@ZIBI0001 15 күн бұрын
After partitioning, the new array should be [-2,-1,0,1,3,2,4]
@louis20122
@louis20122 16 күн бұрын
Is there any support group that assist or help if i get stuck on exercises?
@nikyabodigital
@nikyabodigital 16 күн бұрын
Haven't even played it yet but Alr know the answer is no, esp if u are a software engineer. But in reality itll replace all of us dawg. Look around u so many people getting laid off, job market is disastrous.
@roadtoeternity7865
@roadtoeternity7865 16 күн бұрын
4:14 MAN.............. You should have explained it to the end.....
@qwasfrzxcdqw1693
@qwasfrzxcdqw1693 17 күн бұрын
disgusting algorithm. nice video tho
@pxtrickhuch4418
@pxtrickhuch4418 17 күн бұрын
thank you for teaching me fucktorials
@luhrenn
@luhrenn 17 күн бұрын
Is there a website that I can practice while studying dsa?
@AudreyGB
@AudreyGB 17 күн бұрын
Dynamic programming isn't that hard. If I recall correctly, it just takes memorization and attention to detail.
@jammyme20
@jammyme20 18 күн бұрын
I have no idea , Is it possible to transfer from Mechanical Engineer to Software engineer 🥹
@mapperid
@mapperid 19 күн бұрын
AI replacing jobs AI HR: What is your salary expectation? AI SE: Negotiable AI HR: Noted, will back to you asap AI SE: Thanks, then AI is ghosted ~ circa year 2100s
@sathvik_67
@sathvik_67 19 күн бұрын
Very informative !!