How To: Create a Python Script to Sort Files (Part 1/4)
This month, I will show you how to make a nice and simple document sorting script in Python (and not just because my desktop is so messy that I’ve lost…
Continue readingAll Python content from my online portfolio
This month, I will show you how to make a nice and simple document sorting script in Python (and not just because my desktop is so messy that I’ve lost…
Continue readingStructured Query Language (SQL) stands as the backbone of modern data management, empowering organizations to store, retrieve, and manipulate vast amounts of structured data with precision and efficiency. From database…
Continue readingPython is a general purpose, object oriented, programming language that allows developers to work on a huge array of different tasks. Python can be used to build websites or software,…
Continue readingBefore we had Object Orientated Programming (O.O.P), we had procedural programming. In a nutshell, this means that a programmer would have an array of separately functions and lists of data….
Continue readingIn software development, libraries and frameworks are both important tools used to simplify and speed up the development process, but they have some key differences. A library is a collection…
Continue readingIntroduction to Dictionaries Dictionaries in Python are another essential data structure, offering a way to store data in key-value pairs. Unlike lists, dictionaries are unordered and are optimized for fast…
Continue readingIn today’s digital age, software careers represent a diverse and dynamic landscape, offering endless opportunities for innovation, creativity, and growth. From software development and engineering to project management and quality…
Continue readingClosures in Python are functions that remember and retain references to variables from the scope in which they were defined. This unique feature enables the creation of self-contained functions that…
Continue readingPartial functions in Python are functions that are derived from existing functions by fixing a subset of the arguments. They enable us to create specialized versions of functions with predetermined…
Continue reading