instead of concatenating every string in print function we can use formatted string in python for example instead of print('Hello' + name) we can use print(f'Hello {name}')
@hannajoseph59896 ай бұрын
നിങ്ങൾ വളരെ നല്ലവനാണ്, നിങ്ങൾക്ക് വളരെ വലിയ സമയം ആശംസിക്കുന്നു
@RAJUBHAI-cd2lq3 жыл бұрын
21:56 sherikkum "first " annu print avendath pakshe spelling mistake kaaranam second print ayi:)
@xl36052 жыл бұрын
Very careless
@athirakg4020 Жыл бұрын
Same doubt tonni arengilum ath comment ittatundo ennu nokan vanna njan😁.. Thank you bro👍
@fathimaasna-w8s2 ай бұрын
Sir nte video kanumbo padkyan interest yillate aalkark polum interest verum.iam sure.And thanks for your effort💫
ദിൽഷാദിന്റെ ഉമ്മയുടെ അസുഖം എത്രെയും പെട്ടന്ന് മാറ്റികൊടുക്കട്ടെ 😢😥
@AninArafath4 жыл бұрын
30k subscribers കടന്നതിന് എല്ലാ വിത ആശംസകളും നേരുന്നു 🥰🤩😍
@BrototypeMalayalam4 жыл бұрын
Thankz bro
@AninArafath4 жыл бұрын
നല്ലണം മനസ്സിൽ ആകുന്നുണ്ട്
@vivekcp72933 жыл бұрын
Thank you sir☺️👍
@aslahsha52133 жыл бұрын
21:50 എങ്ങനെയാണ് third ഉം second ഉം വന്നത് എന്ന് ആർക്കെങ്കിലും മനസ്സിലായോ. Oder അനുസരിച് third ഉം first ഉം അല്ലേ വരേണ്ടത് 🙄
@muhammedirfann52013 жыл бұрын
You are correct. But he misspelled the method "display()" as "dislplay()" in Second class. That is why it print not expected output.
@harikrishnanam42753 жыл бұрын
35.55 അന്നും കാണും ഈ python ട്യൂട്ടോറിയൽ ഒക്കെ ആൾക്കാര്..😍 still watching the entire videos🥰
@sajnathondikkal7416 Жыл бұрын
if we want add three names... what should we do...??
@hashirhassan33574 жыл бұрын
Ennaal njan 4th comment 😅 Great presentation man🙌
@BrototypeMalayalam4 жыл бұрын
♥️👍
@hashilsemin24144 жыл бұрын
perfect!!!
@loki_glorious_purpose4 жыл бұрын
Thank you Sir😍😍😍😍
@rejul0083 жыл бұрын
thank you guys.
@BrototypeMalayalam3 жыл бұрын
You are welcome ❤️
@sanojk35832 жыл бұрын
Python series le best episode 5 aaan ttaa
@sanjaysanthosh1149 Жыл бұрын
Thanks ❤
@BrototypeMalayalam Жыл бұрын
You're welcome 😊
@poojasatheesh1970 Жыл бұрын
Python coding nte telegram group ethann ??
@BrototypeMalayalam Жыл бұрын
visit brototype.com
@sreelakshmir15044 жыл бұрын
Thanku sir......
@hackerviber11 ай бұрын
epo ravile neeka download cheya video kana chat got nten programs vanga ath cheya 😊❤
@vijaykk62954 жыл бұрын
Super class...
@BrototypeMalayalam4 жыл бұрын
Thanks
@hashif15744 жыл бұрын
Hello bro no theeroo (100k coding challengil second episodil parayunnath eniku error aanu verunath run cheythaal (enter a no you endered 20) iggene orumicchu verenu solution paranjeroo bro
@BrototypeMalayalam4 жыл бұрын
Bro plz ask in telegram group
@hashif15744 жыл бұрын
@@BrototypeMalayalam njan athil illaaa
@hashif15744 жыл бұрын
Athil cheraaan yenthaa cheyaa
@BrototypeMalayalam4 жыл бұрын
Free support kazhinju, if you want full time support you can take exclusive membership. Kooduthal ariyan thazhe kanunna video onnu kaaanu
mistake in tutorial function name in class Second is worng 'dislplay'
@BrototypeMalayalam4 жыл бұрын
Aa mistake undu. Athu next secondil correct akki explain akkunudu
@RethinkLife4 жыл бұрын
1st comment
@BrototypeMalayalam4 жыл бұрын
👍
@rona22434 жыл бұрын
enta ponno oru rakshailla nanyi full concept mansillakunundu njan enta oru story parayam kelkendavar ketollu njan 8th class ayapoo google web developer akkanam ennu oru agraham athu kondu njan oru IT company ill padikkan poyi najn select cheythathu python ayirunnu egana avidutha teacher ayi meet cheythu avar paranju python padikkan 10000 ruppes annu ennu fee adachu padikan chernnu class okka nalthayiruunu but njna cheriya kutti ayathinta perilla avr class padipichilla inhertance padipichilla pip padipichilla module padipichillapadipichathu annu enkill oru print ,function pinnna set,tuple,dictionary and frozensetpinna datetime module padipichu agana enna p[attichu avar company yuda name njan evida paryunilla cheynilla sthalam ernakulam annu athukondu njan oru kariym parayam online ayi padikkunathu annu nallathu udemy or crossroads youtube channel
@BrototypeMalayalam4 жыл бұрын
❣️
@sreenandhan31393 жыл бұрын
Dilshad sir❤
@shinask7003 жыл бұрын
when defıne 1 more object, eg: z=sum() & z.num1=(50) but ans=x+y+z gettıng error, should I add anythıng in __add__ part ? #in case of intigers class sum: def num1(self,n1): self.n1=n1 def __add__(self,next): result=self.n1+next.n1 return (result) x=sum() y=sum() x.num1(15) y.num1(25) ans=x+y print(ans)