Search Results

Results for "variables"

18 articles found

CSS code showing custom property definitions and usage CSS
1 min read

CSS Variables (Custom Properties)

Maintaining large CSS files used to be a headache. If you wanted a consistent color scheme, you had to do a find-and-replace for every hex code. CSS Variab…

Object oriented programming concept Object-Oriented Programming
1 min read

Object-Oriented Programming in Python

Object-oriented programming (OOP) is a paradigm that organizes code around objects rather than functions. Python is an OOP language from the ground up. A c…

Debugging code concept Testing & Debugging
2 min read

Debugging Python Code Like a Pro

Debugging is an inevitable part of programming. The better you are at it, the faster you can fix issues and move on. Python comes with a built-in debugger…