Showing posts from January, 2022

HTML - Basic Tags

Tags are normally specified in pairs, delimiting a text that will undergo some type of formatting. The tags are ident…

HTML - Introduction

HTML (Hypertext Markup Language) uses a markup system composed of elements that represent content. Markup means that …

Python Highlights | Python Numbers

Python supports integers, floating point numbers, and complex numbers. ► int ► float ► complex Integers are zero, posit…

Debugging - How can I debug my program?

Once testing has discovered problems, the next step is to fix them.  Many newbies do this by making more or less rand…

When to Use while or for in Python

When to Use while or for in Python When learning Python, one of the most common questions is: When should I use a for…

Python *args and **kwargs

Well, technically it's * any ** anything , but the convention is *args and **kwargs. Python *args *args and **kw…