No video

Python Object Oriented Programming for COMPLETE Beginners - Classes and Objects

  Рет қаралды 4,514

Code First with Hala

Code First with Hala

Күн бұрын

Learn Python Object Oriented Programming (OOP) in under 15 minutes. Learn about Python classes and objects.
In this video, you will:
- Learn about OOP in Python
- Learn about classes in Python
- Learn about objects in Python
- Learn about class attributes in Python
- Learn about class methods in Python
Timestamps:
00:00 Introduction
00:08 What are classes and objects in Python?
00:26 Classes and objects analogy
01:38 Create a class in Python
04:25 _init_ function in Python
05:56 Class attributes in Python
11:38 Class methods in Python
13:34 Recap and outro
Icon credits:
The dog and blueprint icons at the start of the video are from flaticon.com
Socials:
My email: code.first.io@gmail.com
Tiktok: / hala.codes
*************
*Tags*
Python OOP
Python Object Oriented Programming
Python OOP tutorial
Object Oriented Programming Python
Python Classes and Objects
Python Classes

Пікірлер: 41
@smnomad9276
@smnomad9276 4 ай бұрын
Where have you gone? Your content is one of the best in the field!
@doktor.paichiwo
@doktor.paichiwo 11 ай бұрын
What happened Hala? Please come back to yt, your tutorials are really good and we miss them :) all the best
@jemilnasir7884
@jemilnasir7884 Ай бұрын
I want to see more of your python tutorial You are great Hala
@paoladececco
@paoladececco 10 ай бұрын
Hala, fantastic teaching level, right speed and all. Especially for people like me, that have a basic understanding of programming logic in other languages, but still fresh to python. Other authors either make it too boring or skip too many details, you get straight to the point with the essential. Thank you!
@srali7609
@srali7609 3 ай бұрын
thank you soo much for making this easy to understand
@kychemclass5850
@kychemclass5850 9 ай бұрын
I love your Videos. Thanks!!!
@matiascavalcante4698
@matiascavalcante4698 Жыл бұрын
Thanks for this video! Is much appreciated 🎉
@sphere1980
@sphere1980 Жыл бұрын
Nice explanation, gr8 video Hala!
@gabrielbolaji8617
@gabrielbolaji8617 Жыл бұрын
It's nice, I love it, keep it up
@princeadvance6237
@princeadvance6237 9 ай бұрын
Thanks for this video
@wormholeinteractive
@wormholeinteractive 4 ай бұрын
Amazing explanation!
@akhalil20002000
@akhalil20002000 6 ай бұрын
Good tutorial.please go on valuable work ❤
@whs861
@whs861 Жыл бұрын
Thank you for this lesson
@tomaszwisniewski319
@tomaszwisniewski319 Жыл бұрын
Thank you for the, very nice explanation
@Gero141
@Gero141 Жыл бұрын
Very nice.
@user-yp5mt5xw6r
@user-yp5mt5xw6r Жыл бұрын
Thank You Mam For ThIs Video😃
@sampathudana1321
@sampathudana1321 7 ай бұрын
Thanks hala
@vasbkamarxil1260
@vasbkamarxil1260 Жыл бұрын
очень интересно, спасибо!!!
@dipak_chandra
@dipak_chandra Жыл бұрын
Hi Hala Your Teaching is Amazing❤
@pdep
@pdep Жыл бұрын
Excellent presentation. I'm looking fwd to the more adv'd 2nd part - inheritance etc. Any possible publication date in mind yet?
@JavaMike71
@JavaMike71 6 ай бұрын
We miss your videos Hala.... Please come back to us.
@dmevermajewellers7196
@dmevermajewellers7196 11 ай бұрын
Hello Hala, you are great .. i want learn how can python user form data in to google sheet
@lnone4944
@lnone4944 Жыл бұрын
Hello Hala, thank you so much for your help. I have a question though: how would you insert a dataframe into an excel template where the excel template has merged rows and merged columns? Thank you.
@ivansergiopocohuancacama3121
@ivansergiopocohuancacama3121 Жыл бұрын
Waiting for the next class
@tastonic30
@tastonic30 Жыл бұрын
Hi Hala can you please do a tutorial for pyqt with qthread and pyqtsignal Having a nightmare
@tokenizedgameplay
@tokenizedgameplay Ай бұрын
@codefirstwithhala the next video please
@fbarr050
@fbarr050 Жыл бұрын
Hello Hala. Have you tried making an ui using the library pyside6?
@Tri-Technology
@Tri-Technology Жыл бұрын
Thank you that clarified a lot. But I still don't get the oop structure for GUIs. When does it make sence to create a new class or object? Why is the code of Qt Creator structured like it is. When should I refer to a new file?
@princeadvance6237
@princeadvance6237 9 ай бұрын
You made mention of a continuation to this video,where can I find it please
@theTwistedBanana
@theTwistedBanana Жыл бұрын
can you please help me with my GUI? when i run my program on other PC with different size, the gui is so big that some of the objects cant be seen. I want my gui to adjust according to the different monitors it runs on
@3-ms9qh
@3-ms9qh Жыл бұрын
ارجوووووووووووك ... هل أستطيع السماح للمستخدم انشاء بروفايل واحد في قاعدة الوقت الفعلي ؟ حار جدا على معرفة السؤال لاني ادخل في مشكلة ..... firebase realtime databease
@davidshady8869
@davidshady8869 8 ай бұрын
Hey do you have like a discord or something where someone could go ad ask.you questions?
@JoelPasapera
@JoelPasapera Жыл бұрын
what mean if __name__ == "__main__"?
@EzerbelCN
@EzerbelCN Жыл бұрын
🥰
@AbdelkaderBenSellam
@AbdelkaderBenSellam 8 ай бұрын
hello any news from hala ? no more video?
@alexandrosdimiropoulos4768
@alexandrosdimiropoulos4768 Жыл бұрын
The thing I don't understand is why use def __init__ specifically and not another name, def abc, for example. That abc function will also run imediately. Why use __init__ instead of any other? That is something I don't understand, what is so special with __init__?
@codefirstwithhala
@codefirstwithhala Жыл бұрын
__init__ is meant for initializing the class attribute values and is run immediately upon creation. if you use “def abc” like you suggested, that function would not run immediately, you’d need to call it explicitly like “maxx.abc()”. However, when you instantiate a new object like this “maxx=Dog()”, as soon as you create the Dog() object, Python will immediately execute __init__ behind the scenes. This is how Python classes are wired.
@alexandrosdimiropoulos4768
@alexandrosdimiropoulos4768 Жыл бұрын
@@codefirstwithhala Ok, thanks! I think I get it now.
@BenThomasAI
@BenThomasAI 9 ай бұрын
Dear Hala, Your videos and Stack Overflow helped me a lot in advancing python learning. Whenever I am stuck in coding, I will look into your videos and find a solution right out there. Thanks a lot for your free tutorials. You teach advanced things in an easy and simple way and your teachings are very well suitable for making day to day practical applications than compared to many other academic teachings. With the help of your videos, I made a trading platform connecting broker API. Thank you very much. But its so sad that there are no new videos from you for the last six months. What happened. Please don't stop your teachings. World needs people like you. We all love you so much. Eagerly waiting for your videos...Best regards
@SethFX
@SethFX 8 ай бұрын
Come back
@rottenmouldybrain
@rottenmouldybrain 5 ай бұрын
Abysmal. All your tutorial does for a "complete beginner" is utterly confuses him.
OOP Class Inheritance and Private Class Members - Python for Beginners!
16:12
Python Object Oriented Programming (OOP) - For Beginners
53:06
Tech With Tim
Рет қаралды 3,3 МЛН
Stay on your way 🛤️✨
00:34
A4
Рет қаралды 27 МЛН
ПОМОГЛА НАЗЫВАЕТСЯ😂
00:20
Chapitosiki
Рет қаралды 4,2 МЛН
Ouch.. 🤕
00:30
Celine & Michiel
Рет қаралды 28 МЛН
5 Tips For Object-Oriented Programming Done Well - In Python
16:08
Learn Python Classes With a Text-Based Battle - OOP Tutorial
15:25
Ork Slayer Gamedev
Рет қаралды 148 М.
This Is Why Python Data Classes Are Awesome
22:19
ArjanCodes
Рет қаралды 799 М.
Python OOP Tutorial 1: Classes and Instances
15:24
Corey Schafer
Рет қаралды 4,4 МЛН
The Fastest Way to Loop in Python - An Unfortunate Truth
8:06
mCoding
Рет қаралды 1,4 МЛН
You Should Be Using This For Work/Research in Python | OOP Tutorial
34:23