Snippets tagged “attributes”
3 snippets use this tag.
- How can I represent an 'Enum' in Python?Python
In Python, you can represent an Enum (enumeration) by using the enum module or by creating a class that inherits from enum.Enum.
- How to Resize SVG in HTMLHTML
In this tutorial, we want to demonstrate how you can resize SVG image in HTML. For that, you can change the values of the “height” and “width” attributes.
- What do __init__ and self do in Python?Python
__init__ is a special method in Python classes, also known as a constructor.