Category

Programming Tutorials and Coding Guides

Explore programming tutorials with practical examples across multiple languages, scripting, and development concepts for beginners and advanced users.

Welcome to the Programming tutorials section, where you will learn coding concepts with real-world examples across multiple languages and platforms.

This category includes beginner to advanced guides covering scripting, automation, and application development. Whether you are learning programming for system administration or building applications, these tutorials will help you gain practical experience.

Programming plays a crucial role in modern infrastructure and DevOps workflows. You can also explore related topics such as DevOps and Linux to understand how programming integrates with system-level operations.

What you will learn

  • Core programming concepts and logic building
  • Writing scripts for automation and system tasks
  • Debugging and optimizing code
  • Practical use cases in real environments

Who should read this

  • Beginners starting with coding
  • System administrators learning scripting
  • Developers looking for practical examples

960 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 · 11 min read · programming

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 · 10 min read · programming

Python List Comprehension [In-Depth Tutorial]

Python list comprehension allows you to generate this same list in just one line of code. A list comprehension combines the for loop and the creation of new …

By bashiralam · 11 min read · programming

Python Operators Explained in Detail with Examples

There are different Python operators. Arithmetic operators, logic operators, assignment operators, augmented operators, bitwise operators, and two special kinds …

By bashiralam · 19 min read · programming

Python map() function explained with examples

The python map function is a Python built-in function that allows us to iterate over iterable without using explicitly any loop

By bashiralam · 14 min read · programming

Python lambda function - with simple examples

Python Lambda is also known as an anonymous function because of its anonymous behavior. It can take any number of arguments but only one expression.

By bashiralam · 11 min read · programming

Flask SQLAlchemy [In-Depth Tutorial]

Flask SQLAlchemy is an extension for flask that adds support for SQLAlchemy to flask by adding useful defaults and helpers that simplify basic tasks

By admin · 21 min read · programming

Flask Templates with Jinja2 Explained in Detail

Jinja2 is python based template engine used in flask, it is built in flask, so you do not need to download a separate package to use jinja2 with flask, it is …

By admin · 12 min read · programming

10 simple ways to sort dictionary by key in Python

After Python 3.6, now dictionary can remember the order in which items are added. So we can easily sort dictionary by key using sorted() and many other modules …

By admin · 7 min read · programming