While learning Object-Oriented Programming (oops concepts), I decided to dive into its history to fully know what is oops concept and it turned out to be fascinating. The term “Object-Oriented Programming” (OOP), also known as OOPs principles in python, was coined by Alan Kay around 1966...
A terminal game heavily inspired by clash of clans coded in python3 using concepts of OOPS - Bhargavi-hash/Clash-of-Clans
Something went wrong and this page crashed! If the issue persists, it's likely a problem on our side. Unexpected end of JSON input SyntaxError: Unexpected end of JSON input
classUser:defcreate_user(self,username,password,email):print("registered user in db")defsend_email(self,subject,to_email):print("email sent")deflog_error(self,error):print("log:",error)defregister_user(self,username,password,email):try:self.create_user(username,password,email)self.send_email...