About the Tutorial



Download 2,85 Mb.
Pdf ko'rish
bet225/234
Sana28.05.2022
Hajmi2,85 Mb.
#614232
1   ...   221   222   223   224   225   226   227   228   ...   234
Bog'liq
python3 tutorial 060821094426

Overloading Operators 
Suppose you have created a Vector class to represent two-dimensional vectors. What 
happens when you use the plus operator to add them? Most likely Python will yell at you. 
You could, however, define the
__add__
method in your class to perform vector addition 
and then the plus operator would behave as per expectation − 
Example
 
#!/usr/bin/python3 
class Vector: 
def __init__(self, a, b): 
self.a = a 
self.b = b 
def __str__(self): 
return 'Vector (%d, %d)' % (self.a, self.b) 
def __add__(self,other): 
return Vector(self.a + other.a, self.b + other.b) 
v1 = Vector(2,10) 
v2 = Vector(5,-2) 
print (v1 + v2) 
When the above code is executed, it produces the following result- 


Python 3 
344 
Vector(7,8) 
Data Hiding 
An object's attributes may or may not be visible outside the class definition. You need to 
name attributes with a double underscore prefix, and those attributes then will not be 
directly visible to outsiders. 
Example
 
#!/usr/bin/python3 
class JustCounter: 
__secretCount = 0 
def count(self): 
self.__secretCount += 1 
print (self.__secretCount) 
counter = JustCounter() 
counter.count() 
counter.count() 
print (counter.__secretCount)
When the above code is executed, it produces the following result- 


Traceback (most recent call last): 
File "test.py", line 12, in  
print counter.__secretCount 
AttributeError: JustCounter instance has no attribute '__secretCount'
Python protects those members by internally changing the name to include the class name. 
You can access such attributes as
object._className__attrName
. If you would replace 
your last line as following, then it works for you- 
......................... 
print (counter._JustCounter__secretCount)
When the above code is executed, it produces the following result- 


Python 3 
345 





Python 3 
346 

regular expression
is a special sequence of characters that helps you match or find other 
strings or sets of strings, using a specialized syntax held in a pattern. Regular expressions 
are widely used in UNIX world. 
The module 

Download 2,85 Mb.

Do'stlaringiz bilan baham:
1   ...   221   222   223   224   225   226   227   228   ...   234




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish