Sheikh Hussain

Python Package Managers - Installing Packages for New Functions

Python’s ecosystem is largely powered by third-party packages that extend the language beyond its built-in features. These packages are distributed through package managers such as PyPI (Python Package Index), where developers can discover, install, and manage libraries created by the global Python community. In this post, I’ll cover the fundamentals of Python packages and share what I’ve learned about installing and using them in practice.

Regular Expressions / RegEx - Finding Patterns In Strings

Regular Expressions (RegEx) is all about finding patterns within a dataset and then performing some actions based off that. It enables us to extract meaningful information from obscured texts. Helps to perform validations, filtering and find-and-replace operations. In this post, I explore how RegEx works and how it can be used to make sense of real-world data while learning alongside the reader.