i had love to see real-time applications of these python codes
@lekwajoshua937813 сағат бұрын
Sincerely, you are a good teacher. Thank you very much sir.
@lekwajoshua937814 сағат бұрын
Thank you so much sir
@editsz11117 сағат бұрын
im learning this after 6 years ago goated
@FatiaAbdulrahman20 сағат бұрын
Who is watching 2025
@olivezooКүн бұрын
more examples of getter and setter ,plz teacher.
@taxuanhieuanh981Күн бұрын
Nice
@Issac-foreverКүн бұрын
Excellent Explanation, Well Done.
@ukusama2 күн бұрын
It keeps crashing on random moments 🥲
@Bonbonvendor3 күн бұрын
Thx so much, very clear and understandble
@jirkadolezal81273 күн бұрын
thank you
@pzmt80514 күн бұрын
Goodjob
@IbrahimUsman-i7k5 күн бұрын
Watching in 2025
@SarahWindseronКүн бұрын
😂
@uaeuae58095 күн бұрын
whos watching this in 2025
@jayrajghosh58725 күн бұрын
,2025 🎉🎉🎉🎉
@anjofiel286 күн бұрын
I'm looking for a programmer to develop an app, I want to form a partnership, I'm willing to pay, get in touch
@ncg896 күн бұрын
I still don't get it
@StanleyVarmah6 күн бұрын
I'm watching
@joyolohita14487 күн бұрын
even in 2025, this video is just so relevant. let me know if you agree with me.
@mccauleybacalla22287 күн бұрын
THANK YOU SO MUCH
@perpetualtechnoob7 күн бұрын
# ----------- 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-c9x7 күн бұрын
this is really helpful, looking forward to more videos on app development for accessibility
@Yseerv8 күн бұрын
So much value in your videos, thank you man. 👍
@0furkanyalcin08 күн бұрын
thank you sir
@allmight88088 күн бұрын
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
@daviddawid1238 күн бұрын
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😁
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.
@wonderland25089 күн бұрын
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
@VanguardSeraph10 күн бұрын
Who are watching in 2025
@ShiwooPrasad7 күн бұрын
Here🖐🏻👋🏻😂
@seoulmate136011 күн бұрын
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 😅
@allmight880811 күн бұрын
thanks bro
@aksarosales-rm1kt12 күн бұрын
Me I'm watching 2025😂
@richardharris20212 күн бұрын
Password 😂
@tybargky46113 күн бұрын
I could kiss you, thank you for this video bro
@HAMZASHAIKH-qs6zv13 күн бұрын
Best
@Twenty5Reazonz13 күн бұрын
Thanks for sharing this lesson and your story!
@ZIBI000115 күн бұрын
After partitioning, the new array should be [-2,-1,0,1,3,2,4]
@louis2012216 күн бұрын
Is there any support group that assist or help if i get stuck on exercises?
@nikyabodigital16 күн бұрын
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.
@roadtoeternity786516 күн бұрын
4:14 MAN.............. You should have explained it to the end.....
@qwasfrzxcdqw169317 күн бұрын
disgusting algorithm. nice video tho
@pxtrickhuch441817 күн бұрын
thank you for teaching me fucktorials
@luhrenn17 күн бұрын
Is there a website that I can practice while studying dsa?
@AudreyGB17 күн бұрын
Dynamic programming isn't that hard. If I recall correctly, it just takes memorization and attention to detail.
@jammyme2018 күн бұрын
I have no idea , Is it possible to transfer from Mechanical Engineer to Software engineer 🥹
@mapperid19 күн бұрын
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