Details
-
AboutCoding is hobby, Robotics is passion, Learning is life
-
SkillsC, Java, Python, C++
-
LocationIndia, West Bengal, Kolkata
Joined devRant on 8/12/2017
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
When the team comprises of you and in the presentation you can see 7 more people standing by your side nodding their heads 😒😒😒😒😒😒😒😒😒😒😒😒2
-
Normal Compilers : i guess you missed a semicolon in line 63
Special Compilers : You wrote wrong code, useless fella, I'm not your servant to tell you all the errors. Your mere existence is unnecessary and useless3 -
What if we could write the problem statement and the AI would write the code for us, or give the program taking the outputs as input 🙄🙄🙄🙄4
-
class test:
def __init__(self, x):
self.x=x
def printer (self):
print self.x
class new(test):
def __init__(self, y, z):
test.__init__(self, y)
self.y=z
def printer (self):
test.printer(self)
print self.x
super(new, self).printer()
print self.y
N1=new(1,2)
N1.printer()
Is this correct in all respects ??
If erroneous, where ??3 -
When your mum asks what you are doing and you say "studying Python" n she be like, go n study what will you do reading about snakes....
P.s. had to explain her about this language2