Using enumerate() in pythonThe enumerate method is used in looping over iterable by taking an iterator object of stream of data of type sequence or generator as an…Oct 25, 2023Oct 25, 2023
How to solve UnicodeDecodeError: ‘UTF-8’ codec can’t decode bytesSo, I just had this error on reading a csv file using pythonOct 19, 2023Oct 19, 2023
Extension Development publicationThis is a shared space for medium stories written around Software Extension topics. It is a special publication that accepts all stories…Oct 3, 2023Oct 3, 2023
A guide on how to reproduce a bug in Software DevelopmentRecreating a bug in software development involves reproducing the issue or error that occurred during the software’s ops. This process…Oct 1, 2023Oct 1, 2023
How to find a file in a GitHub RepoWhile browsing your Github: start typing in the path control box to search for the file or folder you are looking for. The interface lists…Sep 28, 2023Sep 28, 2023
How to create a Pull Request on GitHubTo create a pull request on GitHub, you will need to follow these steps:Sep 28, 2023Sep 28, 2023
How to contribute to an Open Source project as a first-timerOpen source are practical real-world projects which solve real-world challenges. Contributing to open-source projects can be a great way to…Sep 28, 2023Sep 28, 2023
getters & setters in Python OOPIn OOP (Python), you have a class that defines data attributes (properties), and methods that work on the attributes.Feb 7, 2023Feb 7, 2023
Special string method __str__ in Python objects and how to use itDouble underscore special variables, attributes, functions, or methods or modules in python objects are user-defined overriding the…Jan 27, 2023Jan 27, 2023