BLOG

Latest Articles

Python Counter Explained with Simple Examples

Python counter is a subclass of ‘dict’ which keeps the count of the number of occurrences of any value. It is is simply a container which holds the count of …

By bashiralam · 10 min read · Python

git reset examples [hard vs soft vs mixed]

The git reset command changes your repository and working directory to a known state. Specifically, git reset adjusts the HEAD ref to a given commit, and by …

By admin · 10 min read · GIT

SQL INNER JOIN Explained with Simple Examples

The SQL INNER JOIN clause allows you to query data from multiple tables. It returns all rows from Table1, Table2, and Table 3 so on with exact matching rows …

By admin · 12 min read · SQL

Python substring Explained With Examples

A Python substring is a small part of a string. To extract a substring from a string by slicing with indices that get our substring …

By bashiralam · 9 min read · Python