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

957 articles

Introduction to Python for Machine Learning

We have discussed in detail Python for Machine Learning. We have also talked about the types of Machine Learning. For instance, we have provided brief …

By Bashir Alam · 10 min read · programming

Python Catch Multiple Exceptions

Learn how to catch multiple exceptions in Python using one except block with a tuple, separate except blocks, as e, else, finally, and best practices for …

By Bashir Alam · 5 min read · programming

Python get home directory

In this tutorial, we learned about Python get home directory by using various methods. We covered three different methods that we can use to get the home …

By Bashir Alam · 6 min read · programming

Python Exit Program

Learn how to exit a Python program or script using sys.exit(), exit(), quit(), return, and break, including exit codes, messages, functions, loops, and common …

By Bashir Alam · 6 min read · programming

Python Line Continuation: Continue Code on the Next Line

Learn how Python line continuation works using parentheses, brackets, braces, and backslash, with examples for long expressions, strings, lists, function calls, …

By Bashir Alam · 7 min read · programming

Master Python pwd Module [Basics to Advanced]

The Python pwd module provides access to the Unix user account and password database. Using this module, we can access the user's account and password database. …

By Bashir Alam · 10 min read · programming

Master Python Optional Arguments Usage [Tutorial]

Learn everything you need to know about Python optional arguments and optional args. From basics and best practices to advanced techniques, this guide covers it …

By Bashir Alam · 13 min read · programming

Python writelines() Method

how we can use the Python writelines() and Python write() method to write a specific text to the file by using various examples. Furthermore, we also discussed …

By Bashir Alam · 8 min read · programming

Python None Keyword Usage

In this tutorial, we learned about Python None. We discussed how we can declare and assign a None value to a variable and then compared the None value with …

By Bashir Alam · 8 min read · programming

Python remove element from list

build-in methods that are used to python remove element from list. For example, Python remove() method, pop() and clear() method.

By Bashir Alam · 9 min read · programming