techno101.hashnode.devClasses in PythonIn Python, a class is a blueprint for creating objects, providing initial values for state (member variables) and implementations of behavior (member functions or methods). Classes facilitate the concepts of object-oriented programming (OOP) which in...Apr 12, 2024·2 min read
techno101.hashnode.devIf Else Statement in PythonAn if else statement in Python is used to execute different blocks of code based on whether a specific condition is true or false. It allows a program to respond differently to different situations or inputs. Here’s a basic structure: pythonCopy code...Apr 12, 2024·1 min read
techno101.hashnode.devGlobal Attributes in HTMLGlobal attributes in HTML are special attributes that can be applied to most HTML elements, regardless of the element's type. These attributes provide additional information or functionality that is not specific to a particular element's behavior. Un...Apr 5, 2024·3 min read
techno101.hashnode.devHTML vs. XHTML vs. HTML5HTML (HyperText Markup Language), XHTML (eXtensible HyperText Markup Language), and HTML5 are key technologies in the development of web pages and web applications. Each has played a pivotal role in the evolution of web standards, with HTML5 being th...Apr 5, 2024·3 min read
techno101.hashnode.devInheritance and Polymorphism in PythonInheritance and polymorphism are two fundamental concepts in object-oriented programming (OOP). Python, being an object-oriented language, fully supports both concepts. Inheritance: Inheritance is the mechanism by which a class can derive properties ...Apr 2, 2024·2 min read