Maam i have seen your complete dsa playlist and i have started this one .. we are literally blessed to have a teacher like hats off to your work and dedication with all respect.🙌🙇♂🙏.
@ritikpatel6520 Жыл бұрын
class CarDesign: pass obj1=CarDesign() obj2=CarDesign() print(type(obj1)) print(type(obj2))
@VishwashBhusal6 ай бұрын
Function
@preethas56959 ай бұрын
Hello mam. Well and good explanation. I watched full C programming language. Now I am learning python language.. I liked Your way of teaching and then very understandable. Hats of you
Wonderful lectures mam. I love the way you teach that can be understood very well by everyone❤❤
@tejashwiniteju7807 Жыл бұрын
Even though I bought udemy class. I am learning python through Jenny. I don't know how to thank you mam ...
@vaibhavpatharkar6794 Жыл бұрын
Thank you madam for bringing next video so fast. I think my comment is 1st. You teach very nice, concept becomes clear. I know you are giving it for free. But still i will ask you to start sql series please with interview questions 😊
@tharshankumarkb6048 Жыл бұрын
Even i am looking for it
@prateekrawat3648 Жыл бұрын
Thank you so much for sharing the knowledge in simple words
@ovinondontoall10 ай бұрын
awesome, But this video make me easy to learn classes and objects in python kzbin.info/www/bejne/sGqTYaeNgZaCi6s
@SatyalekhyaDsln8 ай бұрын
Thank you putting all the efforts and explaining it with a ease mam .
@susmitagirase3993 Жыл бұрын
Class CarDesign: Passs cardesign_1=CarDesign () cardesign_2=CarDesign ()
@foodwithkalai Жыл бұрын
passs nehi pass
@susmitagirase3993 Жыл бұрын
@@foodwithkalai Typing mistake
@vaibhavpatharkar6794 Жыл бұрын
Iddli example is perfect 😂 5:37
@AccRajendranagar Жыл бұрын
Right.....right
@badmashito4059 Жыл бұрын
class CarDesign: pass c1 = CarDesign() c2 = CarDesign()
@AmjidProgrammer7 ай бұрын
please further explain the terms camel case, snake case and pascal case
@jjjmemes4206 ай бұрын
She already explained bro.
@sairajchigullapally8100 Жыл бұрын
Hi mam big fan of your classes so beautiful ❤️
@_savaliyasagar_9 ай бұрын
Dil aagya yar mem par
@ece4-66anitha9 Жыл бұрын
Mam notes link doesn’t opened mam could u pls send me all the python lectures notes in one pdf pls mam it’s very important for me pls mam
Ma'am could you do a video general aptitude test and how to crack it
@flipdruid8 ай бұрын
Thank you for clear explanation
@shiv_gourav5 ай бұрын
85✅
@shreyashkoulkar3072 Жыл бұрын
Mam ap kaha pr rahate ho please batavo mai ofline sikana chahata hu meri please madat karo😭😭😭😭😭😭🙏🙏🙏🙏🙏🙏
@fitnessbyVishnu Жыл бұрын
Mam oriented c ke sare program de do
@srinuthenewrevolution87254 ай бұрын
Idly is always right 😂
@puneethnaika10 ай бұрын
tittle case
@yrulookinghere50910 ай бұрын
mam owns a creta
@maitrikatti4143 Жыл бұрын
hi mam, please can you suggest me any company providing free Python Crash Course.
@sirivennelaGutha-rl7qh7 ай бұрын
mam you have linkedin account
@vaibhavpatharkar6794 Жыл бұрын
Mine is 1st view , 1st comment 😂
@mohammadshakeelahamad5367Ай бұрын
Camel case
@sumitseervi2065 Жыл бұрын
Aree ham tho class ka leya nhai app ka leya ata hai /in English/ we not come to clarify our doubt but we come here to see an beautiful lecturer...🥰
@redartist9941 Жыл бұрын
Hindi :- Itna bhi sach nahi bolna tha bhai 😂. English :- Didn't to tell the truth as much brother 😂.
@sumitseervi2065 Жыл бұрын
@@redartist9941 yeah mafi bhaiya mafi in English forgive me bro
@redartist9941 Жыл бұрын
🤣
@nameislarto5 ай бұрын
Maam please provide the notes also🫶🏻
@cobbyanimics Жыл бұрын
Assignment #!/usr/bin/python3 class CarDesign:# a class pass car_one = CarDesign() # an object car_two = CarDesign()
@Unknown.genderallah Жыл бұрын
Where are u from
@chanchalkumari3413 Жыл бұрын
Ans : class CarDesign : pass lamborghini = CarDesign( ) limo = CarDesign( )
@khanbhadur43558 ай бұрын
❤I like you ❤️
@mrfreak18 Жыл бұрын
Ab hum apki dkhe ki board ko yhi smjh nh ata
@venkatr2307 Жыл бұрын
The name jayanthi is more beautiful than jenny
@mohammaedpervejnoufilАй бұрын
Ok
@PrinceTewatia00110 ай бұрын
Hindi mai pdao firse python
@dsc40sundar18 Жыл бұрын
class CarDesign: msg = "this is my own class i can create as many objects as i want" Obj1 = CarDesign() Obj2 = CarDesign() print(Obj1.msg) print(Obj2.msg) print(type(Obj1)) print(type(Obj2))