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

Let's try to see in which situation it is better to use the while or for loop, yes, there is a huge difference betw…

Python *args and **kwargs

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