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 while loop examples for multiple scenarios

python while loop, python while loop example, python exit while loop, nested while loops python, how to end a while loop in python, python infinite while loop, …

By admin · 10 min read · programming

8 simple ways to sort dictionary by value in Python

We can use different methods to sort dictionary by value or keys in Python. With Python 3.7 dictionaries remember the order of items inserted so we can use …

By admin · 6 min read · programming

5 simple examples to learn python string.split()

Python split string using string.split() function. Split strings using for loop in one liner. python split string by space. python split string by comma

By admin · 5 min read · programming

10+ examples on python sort() and sorted() function

We can use sort() or sorted() in-built function to perform python sorting for different data types such as list, tuples, dictionaries, list of dictionaries with …

By admin · 9 min read · programming

15+ simple examples to learn Python list in detail

A list is a data structure in Python that is a mutable, ordered sequence of elements. lists are defined by having different data types between square brackets [ …

By admin · 12 min read · programming

10+ simple examples to learn python tuple in detail

Python tuples are collection of comma-separated values. It is identical to a list, except it is immutable. Tuples are useful for storing information that you …

By admin · 9 min read · programming