Ur teaching is just mind blowing 😇great work keep doing
@divyaa1687 Жыл бұрын
Thank u sir god bless u
@prakashe76582 жыл бұрын
Good teaching bro , ultimate
@SWT-Sathya2 жыл бұрын
👍
@sowmiyabharathi-bp4ym Жыл бұрын
👍 bro
@tamizharasan1 Жыл бұрын
None use pannama if condition use pannalama Bro?
@mohamedasifar2 жыл бұрын
Thanks bro
@omgmoments31002 жыл бұрын
Super bro....
@arunkumarvsivacholan6664 Жыл бұрын
Thank you bro ...Nice Explanation i have one doubt .. #I want to multiply args how to define here? class agr: def fun(self,*args): sum=0 for i in args: sum+=i -->#sum*=i? print("Sum Value:",sum)
@ajaypragathees2173 Жыл бұрын
bro this is class and objects la function overloading topic
@o__bean__o Жыл бұрын
class students: def fun(self, a=0): print(a) def fun(self, a=0, b=0): print(a+b) def fun(self, a=0, b=0, c=0): print(a+b+c) mark = students() mark.fun(10) mark.fun(10,20) mark.fun(10,20,80) Bro we can also try this.