AGAnuradha Guptaintechno101.hashnode.dev·Apr 12, 2024 · 2 min readClasses 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...00
AGAnuradha Guptaintechno101.hashnode.dev·Apr 12, 2024 · 1 min readIf 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...00
AGAnuradha Guptaintechno101.hashnode.dev·Apr 5, 2024 · 3 min readGlobal 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...00
AGAnuradha Guptaintechno101.hashnode.dev·Apr 5, 2024 · 3 min readHTML 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...00
AGAnuradha Guptaintechno101.hashnode.dev·Apr 2, 2024 · 2 min readInheritance 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 ...00