Day 21 : Access Modifiers in python | Python Course in Telugu | Vamsi Bhavani

preview_player
Показать описание
Welcome to day 21 of 30 days challenge. OOPS is one of the most important topics in any OOPS based language. OOPS has many concepts into it. But, specifically in this video we will try to understand access modifiers in python.

Assignments:

0:00 Introduction

Telegram for Jobs/Internships:

Jai hind!!!
Рекомендации по теме
Комментарии
Автор

completed day 21 with assignment questions and understood concept very cleary anna.

koyelapatisuresh
Автор

Brother please elage EXCEL, SQL, POWER BI/TABLUE chey brother we support you always

sumant
Автор

i understand all topics up to now but i have doubt on constructors

Meghanachinni-cl
Автор

@Vamsi Bhavani working as Manual tester from the past 6 years so plz suggest which one will be good for career transition to get good package ?pega/Devops?

mahendarreddy
Автор

class person:
... def __init__(self, _name, age):
... self._name=_name
...
>>> class person:
... def __init__(self, _name, age):
... self._name=_name
... self.age=age
... def getvalue(self):
... print('this is', self._name, 'age is', self.age)
...
...
>>> p=person('veer', 45)
>>> p.getvalue()
this is veer age is 45
>>> print(p._name)
veer




small dought clarify please bro
anna nuvvu cheppinattu protectected lo "out side the class" radhu annav kadha mari ikkada ela ikkada possible aindhi
when i print'
print(p._name)
i got name

venupasunuri
Автор

Full stack developer medha videos cheyandi bro I am waiting

veerepallysowjanya
Автор

Hi anna
I am 9th class student
I will work on freelancer or not
I don't have laptop or computer
I will work on mobile or not

kalyancoder
Автор

Annayaaa for game developer how much caption

M_R_K
Автор

int to complex is possible so,
why complex to int is not possible

mrdino
Автор

bro sorry for asking this doubt
bro why can we cant change complex to integer
for ex:- x = 1
print(type(x))
ans : will be = int 1.


now x = complex (x)
print(x)

ans will be (1+0j)

now x = int(x)
print(x)

why ans is showing error as
TypeError: can't convert complex to int
why bro

mrdino