#50 Python Tutorial for Beginners | __init__ method

#50 Python Tutorial for Beginners | __init__ method

Telusko

5 лет назад

643,753 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@julietscholar5273
@julietscholar5273 - 13.11.2023 16:38

You are getting half of my salary, when i get job with this python skill.
You are a wonderful teacher.. Thanks alot

Ответить
@alexmckinley79
@alexmckinley79 - 04.11.2023 13:52

I've been struggling with this for months. Finally, after this video, I think I understand. Thank you!

Ответить
@c.vijayalakshmi567
@c.vijayalakshmi567 - 14.10.2023 16:04

Could your please full information about special variables

Ответить
@rajhapriya6289
@rajhapriya6289 - 08.10.2023 06:34

I am finding it kind of complicated to grasp

Ответить
@ammyguy
@ammyguy - 19.09.2023 19:38

Brilliantly concepts are cleared.... I have never watched such explaination.... Great Job. Thanks

Ответить
@aryandhariwal5987
@aryandhariwal5987 - 13.09.2023 20:20

Satya Nadella is that you?

Ответить
@khyatiyadav1414
@khyatiyadav1414 - 01.08.2023 13:51

Thank you very much

Ответить
@shivaprasadmallikarjunaiah3751
@shivaprasadmallikarjunaiah3751 - 17.07.2023 18:40

I ♥ Python because.... Navin Reddy is teaching Python😀😀 What else can I say, this is tutorial #50, I have come so far only because of his way of teaching in understandable manner and kept it interesting.

Ответить
@TechvinayakIntelugu
@TechvinayakIntelugu - 03.07.2023 17:03

thanks for the video
thanks for the video

Ответить
@xplore1660
@xplore1660 - 18.05.2023 18:39

Not working Vs code editor

Ответить
@tarunkashyap2001
@tarunkashyap2001 - 06.05.2023 11:35

This topic was little confusing

Ответить
@poojaupadhye340
@poojaupadhye340 - 27.04.2023 11:08

I m not geeting where we use it in which case … I never did work in python

Ответить
@hendroheng9336
@hendroheng9336 - 26.04.2023 09:13

May I know why my __ in PyCharm does not work?

Ответить
@SandeepKumar-fj2zg
@SandeepKumar-fj2zg - 09.04.2023 04:00

Jkakkas sir ❤️❤️❤️❤️

Ответить
@kanupriyas3253
@kanupriyas3253 - 31.03.2023 09:31

I am getting an error - computer() takes no arguments . Can someone help here please

Ответить
@kwenamartinkgowa2554
@kwenamartinkgowa2554 - 28.03.2023 13:50

I am from a C# background. Normally in C# we have constructors when dealing with classes and if you don't create one the compiler in the background creates a default constructor for you and it is named after the class name. Is the _init_ concept the same as a class constructor?

Ответить
@yogasreegurram3076
@yogasreegurram3076 - 11.03.2023 13:40

I am facing difficulty to understand the concept clearly,

Ответить
@dhamayanthidevikumaramanga4578
@dhamayanthidevikumaramanga4578 - 08.03.2023 21:47

Your explanation is awesome.

Ответить
@ricardocorrea9398
@ricardocorrea9398 - 01.03.2023 04:42

I enjoyed this video

Ответить
@felixroy269
@felixroy269 - 19.01.2023 23:50

Best concise explaination ever💝❤️

Ответить
@chessbd
@chessbd - 19.01.2023 09:58

I need more practice to absorb these. Thanks for the video! it rocks

Ответить
@user-gu2iw1yz6t
@user-gu2iw1yz6t - 15.01.2023 16:48

Very helpful!

Ответить
@tejaswibhargava8745
@tejaswibhargava8745 - 19.12.2022 20:43

Irony is, I was taking a Udemy course on python and I was having trouble understanding a few concepts so I quickly looked up for telusko learning and Bingo!! I have my doubts cleared. Thanks a lot Sir.. you are one of the best educators out there.

Ответить
@KaushikGanguly72
@KaushikGanguly72 - 08.12.2022 15:12

self=this

Ответить
@electricallibrary1997
@electricallibrary1997 - 23.11.2022 20:45

i have copy pasted your program and it is not working please do help

Ответить
@swethapriya7074
@swethapriya7074 - 15.11.2022 08:53

superrrrrrr

Ответить
@sourav7954
@sourav7954 - 13.11.2022 08:50

thanku you

Ответить
@ROSUJACOB
@ROSUJACOB - 04.11.2022 15:58

my wife!!!!missed you!!!

Ответить
@anandbhojane8156
@anandbhojane8156 - 26.09.2022 13:32

This is very confusing I saw this video 3 times, the last 50 videos I understood very easily

Ответить
@Dabbl1ng
@Dabbl1ng - 23.09.2022 01:35

Thanks, this is the first video where I actually understood what's going on here.

Ответить
@tamilselvan_g0448
@tamilselvan_g0448 - 06.09.2022 18:10

Sir I have faced some error .... In output comes up wrong.. computer has no arguments how to handle this error sir

Ответить
@persianleague399
@persianleague399 - 05.09.2022 04:32

the moment I run the code it says: Type Error: computer() takes no arguments
I dont know why, I wrote exactly what you did...
any idea??

Ответить
@avirajsdiary
@avirajsdiary - 03.09.2022 15:11

class Computer:

def __init__(self,cpu, gpu, ram, hdd):
self.cpu = cpu
self.gpu = gpu
self.ram = ram
self.hdd = hdd

def SysConfig(self):
print("Config IS ", self.cpu, self.ram, self.gpu, self.hdd)

def GamingPC(self):
print("Welcome To Avi's Gaming World ")

def main(self):
Computer.GamingPC(self)
print()
Computer.SysConfig(self)


obj1 = Computer('Ryzen 5 5600X', '16 GB', 'Nvidia RTX 3050', '1TB')
obj1.main()

Ответить
@SwatcomComputers
@SwatcomComputers - 28.08.2022 18:50

These code are not working in pycharm

Ответить
@Luca-qz4iy
@Luca-qz4iy - 27.08.2022 13:16

code does not work: computer() takes no arguments

Ответить
@dolordecabeza1
@dolordecabeza1 - 23.08.2022 01:28

Nice 😁

Ответить
@prasannadeshpande4435
@prasannadeshpande4435 - 12.08.2022 19:38

I see a good quality tutorial video, I hit like and subscribe the channel.

Ответить
@vakhariyajay2224
@vakhariyajay2224 - 01.08.2022 22:33

Thank you very much. You are a genius.

Ответить
@brianthomas9148
@brianthomas9148 - 27.07.2022 09:23

thank you, very nicely explained

Ответить
@jwho713
@jwho713 - 26.07.2022 22:36

Great explaination!

Ответить
@thkhan
@thkhan - 22.07.2022 22:20

gold

Ответить
@heuristicalgorithm8465
@heuristicalgorithm8465 - 08.07.2022 21:44

so, what's being passed to self? this is confusing

Ответить
@ayushipandey
@ayushipandey - 06.07.2022 21:15

Great Explanation. You explain difficult concepts very easily. Thanks a ton!

Ответить
@adityakapoor2817
@adityakapoor2817 - 24.06.2022 13:57

I’m getting name error in same code

Ответить
@amarpreetkaur4477
@amarpreetkaur4477 - 23.06.2022 00:39

Hi, can you briefly describe _init_ and self method. Still have some doubt

Ответить
@tinausr
@tinausr - 17.05.2022 17:57

I started reading 2 books to unserstand methods error and it was not until I found this video that everything started making bit more sense. You sir a revelation.

Ответить
@dharaneeshwaranr3591
@dharaneeshwaranr3591 - 26.04.2022 15:47

Motta on 🔥📛

Ответить
@zuberkhan-kn7iu
@zuberkhan-kn7iu - 26.04.2022 15:36

I like the way he purposely made mistake ,just to let us know more about subject

Ответить